42 lines
972 B
Groovy
42 lines
972 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'org.jetbrains.kotlin.android'
|
|
|
|
android {
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.childmonitor_multiple"
|
|
minSdkVersion 21
|
|
targetSdkVersion 34
|
|
versionCode 14
|
|
versionName "1.5"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
}
|
|
namespace 'com.example.childmonitor_multiple'
|
|
lint {
|
|
abortOnError true
|
|
warning 'MissingTranslation'
|
|
}
|
|
compileOptions {
|
|
// Sets Java compatibility to Java 21
|
|
sourceCompatibility JavaVersion.VERSION_21
|
|
targetCompatibility JavaVersion.VERSION_21
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core:1.12.0'
|
|
implementation 'androidx.core:core-ktx:1.12.0'
|
|
} |