56 lines
1.8 KiB
Groovy
56 lines
1.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
// versionCode and versionName must be hardcoded to support F-droid
|
|
versionCode 701001
|
|
versionName '7.1.0'
|
|
applicationId 'dev.lucasnlm.antimine'
|
|
minSdkVersion 23
|
|
targetSdkVersion 29
|
|
vectorDrawables.useSupportLibrary true
|
|
resConfigs 'en', 'cs', 'de', 'el', 'es', 'fr', 'ja', 'pt', 'ru', 'tr', 'uk', 'vi', 'zh'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Dependencies must be hardcoded to support F-droid
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':common')
|
|
|
|
// Constraint
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
|
|
// Wear OS
|
|
implementation 'androidx.wear:wear:1.0.0'
|
|
implementation 'com.google.android.gms:play-services-wearable:17.0.0'
|
|
implementation 'com.google.android.support:wearable:2.5.0'
|
|
compileOnly 'com.google.android.wearable:wearable:2.5.0'
|
|
|
|
// Dagger
|
|
api 'com.google.dagger:dagger-android:2.21'
|
|
api 'com.google.dagger:dagger-android-support:2.21'
|
|
kapt 'com.google.dagger:dagger-android-processor:2.21'
|
|
kapt 'com.google.dagger:dagger-compiler:2.21'
|
|
|
|
// Kotlin
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5'
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.5'
|
|
}
|