birthdaycountdown/android-app/app/build.gradle

32 lines
772 B
Groovy
Raw Permalink Normal View History

2022-06-05 13:19:59 +02:00
plugins {
id 'com.android.application'
}
android {
2022-08-31 16:02:48 +02:00
compileSdk 32
2022-06-05 13:19:59 +02:00
defaultConfig {
applicationId "de.drmaxnix.birthdaycountdown"
minSdk 24
2022-08-31 16:02:48 +02:00
targetSdk 32
2022-08-31 16:03:44 +02:00
versionCode 2
versionName "1.1.0"
2022-06-05 13:19:59 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
2022-08-31 16:02:48 +02:00
implementation 'androidx.appcompat:appcompat:1.5.0'
2022-06-05 13:19:59 +02:00
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
}