plugins { id("com.android.application") id("org.jetbrains.kotlin.android") id("org.jetbrains.kotlin.plugin.serialization") id("org.jetbrains.kotlin.plugin.compose") } import java.util.Properties android { namespace = "solutions.tretter.mindmachine" compileSdk = 35 defaultConfig { applicationId = "solutions.tretter.mindmachine" minSdk = 26 targetSdk = 35 versionCode = 14 versionName = "1.0.9" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } buildTypes { signingConfigs { create("release") { val propsFile = rootProject.file("keystore/upload-keystore.properties") if (propsFile.exists()) { val props = Properties().apply { propsFile.inputStream().use { this.load(it) } } storeFile = rootProject.file(props.getProperty("storeFile")) storePassword = props.getProperty("storePassword") keyAlias = props.getProperty("keyAlias") keyPassword = props.getProperty("keyPassword") } } } release { signingConfig = signingConfigs.getByName("release") isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } buildFeatures { compose = true } composeOptions { kotlinCompilerExtensionVersion = "1.5.14" } packaging { resources { excludes += "/META-INF/{AL2.0,LGPL2.1}" } } } dependencies { val composeBom = platform("androidx.compose:compose-bom:2024.09.03") implementation(composeBom) androidTestImplementation(composeBom) implementation("androidx.core:core-ktx:1.13.1") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.6") implementation("androidx.activity:activity-compose:1.9.2") implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.6") implementation("androidx.lifecycle:lifecycle-runtime-compose:2.8.6") implementation("androidx.navigation:navigation-compose:2.8.2") implementation("androidx.datastore:datastore-preferences:1.1.1") implementation("androidx.compose.ui:ui") implementation("androidx.compose.ui:ui-tooling-preview") implementation("androidx.compose.material3:material3") implementation("com.google.android.material:material:1.12.0") implementation("androidx.compose.material:material-icons-extended") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1") // Monetization implementation("com.google.android.gms:play-services-ads:23.1.0") implementation("com.android.billingclient:billing-ktx:8.0.0") testImplementation("junit:junit:4.13.2") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.1") androidTestImplementation("androidx.test.ext:junit:1.2.1") androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1") androidTestImplementation("androidx.compose.ui:ui-test-junit4") debugImplementation("androidx.compose.ui:ui-tooling") debugImplementation("androidx.compose.ui:ui-test-manifest") }