78 lines
2.3 KiB
Groovy
78 lines
2.3 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'org.jetbrains.kotlin.android'
|
|
}
|
|
|
|
android {
|
|
namespace 'acidburn.stims'
|
|
compileSdk 35
|
|
|
|
defaultConfig {
|
|
applicationId "acidburn.stims"
|
|
minSdk 24
|
|
targetSdk 35
|
|
versionCode 2
|
|
versionName "1.1"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
kotlinOptions {
|
|
jvmTarget = '11'
|
|
}
|
|
buildFeatures {
|
|
compose true
|
|
buildConfig true
|
|
}
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion '1.5.15'
|
|
}
|
|
packagingOptions {
|
|
resources {
|
|
excludes += '/META-INF/{AL2.0,LGPL2.1}'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core-ktx:1.15.0'
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
|
|
implementation 'androidx.activity:activity-compose:1.10.1'
|
|
implementation platform('androidx.compose:compose-bom:2025.02.00')
|
|
implementation 'androidx.compose.ui:ui'
|
|
implementation 'androidx.compose.ui:ui-graphics'
|
|
implementation 'androidx.compose.ui:ui-tooling-preview'
|
|
implementation 'androidx.compose.material3:material3'
|
|
implementation 'androidx.compose.material:material-icons-extended'
|
|
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
androidTestImplementation platform('androidx.compose:compose-bom:2025.02.00')
|
|
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
|
|
debugImplementation 'androidx.compose.ui:ui-tooling'
|
|
debugImplementation 'androidx.compose.ui:ui-test-manifest'
|
|
}
|
|
|
|
// Alias for CI/CD systems or scripts that expect the standard Java 'testClasses' task
|
|
tasks.register("testClasses") {
|
|
// This maps to compiling the debug unit tests
|
|
dependsOn "compileDebugUnitTestSources"
|
|
}
|