Files
babyphone/app/build.gradle
2024-02-26 18:21:22 +01:00

42 lines
956 B
Groovy

apply plugin: 'com.android.application'
apply plugin: 'org.jetbrains.kotlin.android'
android {
compileSdk 34
defaultConfig {
applicationId "de.rochefort.childmonitor"
minSdkVersion 21
targetSdkVersion 34
versionCode 12
versionName "1.2"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
dependencies {
}
namespace 'de.rochefort.childmonitor'
lint {
abortOnError true
warning 'MissingTranslation'
}
compileOptions {
// Sets Java compatibility to Java 17
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(17)
}
}
dependencies {
implementation 'androidx.core:core:1.12.0'
implementation 'androidx.core:core-ktx:1.12.0'
}