commit 06b826cbefebceea8b524a4dded2fc3ac745ed9f Author: lvlisong Date: Mon Jan 20 21:11:24 2025 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..359bb53 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# 默认忽略的文件 +/shelf/ +/workspace.xml diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b86273d --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..f20be6d --- /dev/null +++ b/.idea/deploymentTargetSelector.xml @@ -0,0 +1,18 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..0897082 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..44ca2d9 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,41 @@ + + + + \ No newline at end of file diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml new file mode 100644 index 0000000..0e1c4ec --- /dev/null +++ b/.idea/kotlinc.xml @@ -0,0 +1,13 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/migrations.xml b/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..b2c751a --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100755 index 0000000..16660f1 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts new file mode 100644 index 0000000..2b599fb --- /dev/null +++ b/app/build.gradle.kts @@ -0,0 +1,74 @@ +plugins { + alias(libs.plugins.android.application) + alias(libs.plugins.jetbrains.kotlin.android) +} + +android { + namespace = "io.sixminutes.breakingnews" + compileSdk = 35 + + defaultConfig { + applicationId = "io.sixminutes.breakingnews" + minSdk = 31 + targetSdk = 35 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + vectorDrawables { + useSupportLibrary = true + } + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } + buildFeatures { + compose = true + } + composeOptions { + kotlinCompilerExtensionVersion = "1.5.1" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } +} + +dependencies { + + implementation(libs.androidx.core.ktx) + implementation(libs.androidx.lifecycle.runtime.ktx) + implementation(libs.androidx.activity.compose) + implementation(platform(libs.androidx.compose.bom)) + implementation(libs.androidx.ui) + implementation(libs.androidx.ui.graphics) + implementation(libs.androidx.ui.tooling.preview) + implementation(libs.androidx.material3) + implementation("com.google.android.gms:play-services-ads-identifier:18.0.1") + implementation("com.google.android.gms:play-services-base:18.2.0") + implementation("com.applovin:applovin-sdk:+") + implementation("com.applovin.dsp:linkedin-adapter:+") + implementation("com.adjust.sdk:adjust-android:5.0.2") + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) + androidTestImplementation(platform(libs.androidx.compose.bom)) + androidTestImplementation(libs.androidx.ui.test.junit4) + debugImplementation(libs.androidx.ui.tooling) + debugImplementation(libs.androidx.ui.test.manifest) +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/io/sixminutes/breakingnews/ExampleInstrumentedTest.kt b/app/src/androidTest/java/io/sixminutes/breakingnews/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..9e567fc --- /dev/null +++ b/app/src/androidTest/java/io/sixminutes/breakingnews/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package io.sixminutes.breakingnews + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("io.sixminutes.breakingnews", appContext.packageName) + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..157e591 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/BreakingnewApplication.kt b/app/src/main/java/io/sixminutes/breakingnews/BreakingnewApplication.kt new file mode 100644 index 0000000..1864766 --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/BreakingnewApplication.kt @@ -0,0 +1,29 @@ +package io.sixminutes.breakingnews + +import android.app.Application +import com.applovin.sdk.AppLovinMediationProvider +import com.applovin.sdk.AppLovinSdk +import com.applovin.sdk.AppLovinSdkInitializationConfiguration + +class BreakingNewsApplication : Application() { + + override fun onCreate() { + super.onCreate() + + // 初始化 AppLovin SDK + initializeAppLovinSdk() + } + + private fun initializeAppLovinSdk() { + val initConfig = AppLovinSdkInitializationConfiguration.builder( + "HVX8TLpa1WRO82HgVgS2OB8BfnTc-RkUHGGQQkXosEXgFq7n-3miRRw3JRqZwOW6R42ek58PpT9TM_N-glWMgc", + this + ).setMediationProvider(AppLovinMediationProvider.MAX).build() + + // Initialize the SDK with the configuration + + AppLovinSdk.getInstance(this).initialize(initConfig) { +// createBannerAd() + } + } +} \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/GAIDHelper.kt b/app/src/main/java/io/sixminutes/breakingnews/GAIDHelper.kt new file mode 100644 index 0000000..6c2a5d1 --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/GAIDHelper.kt @@ -0,0 +1,75 @@ +package io.sixminutes.breakingnews +import android.content.Context +import com.google.android.gms.ads.identifier.AdvertisingIdClient +import com.google.android.gms.common.ConnectionResult +import com.google.android.gms.common.GoogleApiAvailability +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.withContext +import java.lang.Exception + +class GAIDHelper(private val context: Context) { + + /** + * 检查 Google Play 服务是否可用 + * + * @return true 如果 Google Play 服务可用,否则返回 false + */ + fun isGooglePlayServicesAvailable(): Boolean { + val googleApiAvailability = GoogleApiAvailability.getInstance() + val resultCode = googleApiAvailability.isGooglePlayServicesAvailable(context) + return resultCode == ConnectionResult.SUCCESS + } + + + /** + * 异步获取 GAID + * + * @param callback 获取结果回调接口 + */ + suspend fun getAdvertisingId(callback: OnAdvertisingIdListener) { + // 使用 withContext(Dispatchers.IO) 将获取 GAID 的操作切换到 IO 线程,避免阻塞主线程 + withContext(Dispatchers.IO) { + try { + // 使用 AdvertisingIdClient.getAdvertisingIdInfo 获取 GAID 信息 + val adInfo = AdvertisingIdClient.getAdvertisingIdInfo(context) + // 获取 GAID 字符串 + val gaid = adInfo.id + // 使用 withContext(Dispatchers.Main) 将回调切换到主线程 + withContext(Dispatchers.Main) { + // 调用回调接口的 onSuccess 方法,传递 GAID + if (gaid != null) { + callback.onSuccess(gaid) + } else { + callback.onFailure(Exception("Failed to retrieve advertising ID. GAID is null.")) + } + } + } catch (e: Exception) { + // 使用 withContext(Dispatchers.Main) 将回调切换到主线程 + withContext(Dispatchers.Main) { + // 调用回调接口的 onFailure 方法,传递异常信息 + callback.onFailure(e) + } + } + } + } + + + /** + * GAID 获取结果回调接口 + */ + interface OnAdvertisingIdListener { + /** + * 获取 GAID 成功回调 + * + * @param gaid 获取到的 GAID + */ + fun onSuccess(gaid: String) + + /** + * 获取 GAID 失败回调 + * + * @param e 异常信息 + */ + fun onFailure(e: Exception) + } +} \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/InterstitialActivity.kt b/app/src/main/java/io/sixminutes/breakingnews/InterstitialActivity.kt new file mode 100644 index 0000000..57b8830 --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/InterstitialActivity.kt @@ -0,0 +1,106 @@ +package io.sixminutes.breakingnews + +import android.app.Activity +import android.content.Intent +import android.os.Bundle +import android.util.Log +import com.applovin.mediation.MaxAd +import com.applovin.mediation.MaxAdListener +import com.applovin.mediation.MaxError +import com.applovin.mediation.ads.MaxInterstitialAd +import kotlinx.coroutines.CoroutineScope +import kotlinx.coroutines.Dispatchers +import kotlinx.coroutines.delay +import kotlinx.coroutines.launch +import java.util.concurrent.TimeUnit + + +class InterstitialActivity : Activity(), MaxAdListener { + private lateinit var interstitialAd: MaxInterstitialAd + private var retryAttempt = 0 + private val maxRetryAttempts = 6 // 最大重试次数 + private var loadCount = 0 // 用于计数广告加载次数 + private val maxLoadCount = 10 // 最大加载次数 + private var isAdShowing = false // 用于跟踪广告是否正在显示 + private val scope = CoroutineScope(Dispatchers.Main) // 创建一个CoroutineScope + private val TAG = "BreakingNews" + + fun createInterstitialAd() { + interstitialAd = MaxInterstitialAd("be20b7a9d66e8895", applicationContext) + interstitialAd.setListener(this) + + // Load the first ad + interstitialAd.loadAd() + } + + // MAX Ad Listener + override fun onAdLoaded(maxAd: MaxAd) { + // Interstitial ad is ready to be shown. interstitialAd.isReady() will now return 'true' + Log.d(TAG, "Ad loaded successfully: ${maxAd.adUnitId}") + + // Reset retry attempt + retryAttempt = 0 + + // 显示广告 + if (interstitialAd.isReady) { + interstitialAd.showAd(this) + } + } + + override fun onAdLoadFailed(ad: String, error: MaxError) { + // Interstitial ad failed to load + Log.d(TAG, "Ad load failed: ${ad}, error code: ${error.code}, message: ${error.message}") + + if (retryAttempt < maxRetryAttempts) { + retryAttempt++ + val delayMillis = + TimeUnit.SECONDS.toMillis(Math.pow(2.0, retryAttempt.toDouble()).toLong()) + + // 使用 Coroutine 延迟重试 + scope.launch { + delay(delayMillis) + interstitialAd.loadAd() + } + } else { + Log.d(TAG, "Maximum retry attempts reached. No more retries.") + } + } + + override fun onAdDisplayFailed(ad: MaxAd, error: MaxError) { + // Interstitial ad failed to display. AppLovin recommends that you load the next ad. + interstitialAd.loadAd() + Log.d( + TAG, + "Ad disable failed: ${ad.adUnitId}, error code: ${error.code}, message: ${error.message}" + ) + } + + override fun onAdDisplayed(maxAd: MaxAd) { + Log.d(TAG, "Ad displayed: ${maxAd.adUnitId}") + } + + override fun onAdClicked(maxAd: MaxAd) { + Log.d(TAG, "Ad clicked: ${maxAd.adUnitId}") + } + + override fun onAdHidden(maxAd: MaxAd) { + // Interstitial ad is hidden. Pre-load the next ad + interstitialAd.loadAd() + Log.d(TAG, "Ad hidden: ${maxAd.adUnitId}") + } + + // 返回主页面的方法 + private fun returnToMainPage() { + val intent = Intent(this, MainActivity::class.java) // 假设主页面是 MainActivity + startActivity(intent) + finish() // 结束当前 Activity + } + + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + //setContentView(R.layout.activity_main) + + createInterstitialAd() // 初始调用,创建并加载插页广告 + } +} \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/MainActivity.kt b/app/src/main/java/io/sixminutes/breakingnews/MainActivity.kt new file mode 100644 index 0000000..5091edd --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/MainActivity.kt @@ -0,0 +1,142 @@ +package io.sixminutes.breakingnews + +import android.content.Intent +import android.os.Bundle +import android.util.Log +import androidx.activity.ComponentActivity +import androidx.activity.compose.setContent +import androidx.compose.foundation.layout.Arrangement +import androidx.compose.foundation.layout.Box +import androidx.compose.foundation.layout.Column +import androidx.compose.foundation.layout.fillMaxSize +import androidx.compose.foundation.layout.fillMaxWidth +import androidx.compose.foundation.layout.height +import androidx.compose.foundation.layout.padding +import androidx.compose.material3.Scaffold +import androidx.compose.material3.Text +import androidx.compose.runtime.* +import androidx.compose.ui.Alignment +import androidx.compose.ui.Modifier +import androidx.compose.ui.viewinterop.AndroidView +import androidx.core.view.WindowCompat +import com.applovin.mediation.MaxAd +import com.applovin.mediation.MaxAdViewAdListener +import com.applovin.mediation.MaxError +import com.applovin.mediation.ads.MaxAdView +import io.sixminutes.breakingnews.ui.theme.BreakingnewsTheme +import androidx.compose.ui.unit.dp + +class MainActivity : ComponentActivity(), MaxAdViewAdListener { + private val gaidHelper by lazy { GAIDHelper(this) } + private val TAG = "BreakingNews" + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + WindowCompat.setDecorFitsSystemWindows(window, false) + + setContent { + BreakingnewsTheme { + Scaffold(modifier = Modifier.fillMaxSize()) { innerPadding -> + Box( + modifier = Modifier + .fillMaxSize() + .padding(innerPadding), + ) { + val gaid = remember { mutableStateOf(null) } + LaunchedEffect(Unit) { + gaidHelper.getAdvertisingId(object : + GAIDHelper.OnAdvertisingIdListener { + override fun onSuccess(gaidValue: String) { + gaid.value = gaidValue + Log.e(TAG, "GAID: ${gaidValue}") + } + + override fun onFailure(e: Exception) { + Log.e(TAG, "Failed to retrieve GAID: ${e.message}") + } + }) + } + // 使用 Column 组件进行垂直排列 + Column( + modifier = Modifier + .fillMaxSize() + .padding(innerPadding), + horizontalAlignment = Alignment.CenterHorizontally, + verticalArrangement = Arrangement.Center // 垂直居中 + ) { + //BannerAdView(adUnitId = "119670a17d9d8ed5", listener = this@MainActivity) + GAIDInfo(gaid = gaid.value) + } + } + } + } + } + + // 启动 InterstitialActivity 来显示广告 + showInterstitialAd() + } + private fun showInterstitialAd() { + val intent = Intent(this, InterstitialActivity::class.java) + startActivity(intent) + } + // MaxAdViewAdListener implementations + override fun onAdLoaded(ad: MaxAd) { + Log.d(TAG, "Ad loaded: ${ad.adUnitId}") + } + + override fun onAdDisplayed(ad: MaxAd) { + Log.d(TAG, "Ad displayed: ${ad.adUnitId}") + } + + override fun onAdHidden(ad: MaxAd) { + Log.d(TAG, "Ad hidden: ${ad.adUnitId}") + } + + override fun onAdClicked(ad: MaxAd) { + Log.d(TAG, "Ad clicked: ${ad.adUnitId}") + } + + override fun onAdLoadFailed(ad: String, error: MaxError) { + Log.e(TAG, "Ad load failed for $ad: ${error.message}") + } + + override fun onAdDisplayFailed(ad: MaxAd, error: MaxError) { + Log.e(TAG, "Ad display failed for ${ad.adUnitId}: ${error.message}") + } + + override fun onAdExpanded(ad: MaxAd) { + Log.d(TAG, "Ad expanded: ${ad.adUnitId}") + } + + override fun onAdCollapsed(ad: MaxAd) { + Log.d(TAG, "Ad collapsed: ${ad.adUnitId}") + } +} + +@Composable +fun GAIDInfo(gaid: String?) { + if (gaid != null) { + Text(text = "GAID: $gaid") + } else { + Text(text = "Loading GAID...") + } +} + +@Composable +fun BannerAdView(adUnitId: String, listener: MaxAdViewAdListener) { + + AndroidView( + factory = { ctx -> + val adView = MaxAdView(adUnitId, ctx) + adView.setListener(listener) + adView.setExtraParameter("adaptive_banner", "true") + adView.setBackgroundColor(android.graphics.Color.TRANSPARENT) + adView.loadAd() + adView + }, + modifier = Modifier + .fillMaxWidth() // You might not need fillMaxWidth here anymore + .height(80.dp) + //.wrapContentHeight() + ) +} \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Color.kt b/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Color.kt new file mode 100644 index 0000000..dcdabd2 --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Color.kt @@ -0,0 +1,11 @@ +package io.sixminutes.breakingnews.ui.theme + +import androidx.compose.ui.graphics.Color + +val Purple80 = Color(0xFFD0BCFF) +val PurpleGrey80 = Color(0xFFCCC2DC) +val Pink80 = Color(0xFFEFB8C8) + +val Purple40 = Color(0xFF6650a4) +val PurpleGrey40 = Color(0xFF625b71) +val Pink40 = Color(0xFF7D5260) \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Theme.kt b/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Theme.kt new file mode 100644 index 0000000..8f6c400 --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Theme.kt @@ -0,0 +1,58 @@ +package io.sixminutes.breakingnews.ui.theme + +import android.app.Activity +import android.os.Build +import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.material3.MaterialTheme +import androidx.compose.material3.darkColorScheme +import androidx.compose.material3.dynamicDarkColorScheme +import androidx.compose.material3.dynamicLightColorScheme +import androidx.compose.material3.lightColorScheme +import androidx.compose.runtime.Composable +import androidx.compose.ui.platform.LocalContext + +private val DarkColorScheme = darkColorScheme( + primary = Purple80, + secondary = PurpleGrey80, + tertiary = Pink80 +) + +private val LightColorScheme = lightColorScheme( + primary = Purple40, + secondary = PurpleGrey40, + tertiary = Pink40 + + /* Other default colors to override + background = Color(0xFFFFFBFE), + surface = Color(0xFFFFFBFE), + onPrimary = Color.White, + onSecondary = Color.White, + onTertiary = Color.White, + onBackground = Color(0xFF1C1B1F), + onSurface = Color(0xFF1C1B1F), + */ +) + +@Composable +fun BreakingnewsTheme( + darkTheme: Boolean = isSystemInDarkTheme(), + // Dynamic color is available on Android 12+ + dynamicColor: Boolean = true, + content: @Composable () -> Unit +) { + val colorScheme = when { + dynamicColor && Build.VERSION.SDK_INT >= Build.VERSION_CODES.S -> { + val context = LocalContext.current + if (darkTheme) dynamicDarkColorScheme(context) else dynamicLightColorScheme(context) + } + + darkTheme -> DarkColorScheme + else -> LightColorScheme + } + + MaterialTheme( + colorScheme = colorScheme, + typography = Typography, + content = content + ) +} \ No newline at end of file diff --git a/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Type.kt b/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Type.kt new file mode 100644 index 0000000..8c7b77b --- /dev/null +++ b/app/src/main/java/io/sixminutes/breakingnews/ui/theme/Type.kt @@ -0,0 +1,34 @@ +package io.sixminutes.breakingnews.ui.theme + +import androidx.compose.material3.Typography +import androidx.compose.ui.text.TextStyle +import androidx.compose.ui.text.font.FontFamily +import androidx.compose.ui.text.font.FontWeight +import androidx.compose.ui.unit.sp + +// Set of Material typography styles to start with +val Typography = Typography( + bodyLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 16.sp, + lineHeight = 24.sp, + letterSpacing = 0.5.sp + ) + /* Other default text styles to override + titleLarge = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Normal, + fontSize = 22.sp, + lineHeight = 28.sp, + letterSpacing = 0.sp + ), + labelSmall = TextStyle( + fontFamily = FontFamily.Default, + fontWeight = FontWeight.Medium, + fontSize = 11.sp, + lineHeight = 16.sp, + letterSpacing = 0.5.sp + ) + */ +) \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/app/src/main/res/mipmap-anydpi/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f8c6127 --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,10 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..b0aeaae --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + breakingnews + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..e109307 --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,5 @@ + + + +