trkpt/app/build.gradle

75 lines
2.3 KiB
Groovy
Raw Normal View History

2016-08-29 12:50:41 +00:00
apply plugin: 'com.android.application'
2020-01-02 17:00:37 +00:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-parcelize'
2020-01-02 17:00:37 +00:00
apply plugin: 'androidx.navigation.safeargs.kotlin'
2016-08-29 12:50:41 +00:00
android {
compileSdkVersion 30
2016-08-29 12:50:41 +00:00
defaultConfig {
2020-01-02 17:00:37 +00:00
applicationId 'org.y20k.trackbook'
minSdkVersion 25
targetSdkVersion 30
2021-03-12 21:31:58 +00:00
versionCode 48
versionName '2.1.0'
resConfigs "en", "da", "de", "fr", "hr", "id", "it", "ja", "nb-rNO", "nl", "pt-rBR", "sv", "tr", "zh-rCN"
2016-08-29 12:50:41 +00:00
}
2020-01-02 17:00:37 +00:00
kotlinOptions {
jvmTarget = '1.8'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2020-07-31 23:56:40 +00:00
lintOptions {
disable 'MissingTranslation', 'GoogleAppIndexingWarning'
2020-01-02 17:00:37 +00:00
}
2020-08-01 01:31:25 +00:00
packagingOptions {
exclude 'META-INF/*'
}
2020-01-02 17:00:37 +00:00
buildTypes {
2016-08-29 12:50:41 +00:00
release {
minifyEnabled true
2017-11-28 21:02:45 +00:00
shrinkResources true
2020-07-31 23:56:40 +00:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2016-08-29 12:50:41 +00:00
}
2020-01-02 17:00:37 +00:00
debug {
2020-09-02 14:00:57 +00:00
// Comment out the below lines if you do not need to test resource shrinking
// minifyEnabled true
// shrinkResources true
// proguardFiles getDefaultProguardFile(
// 'proguard-android-optimize.txt'),
// 'proguard-rules.pro'
2020-01-02 17:00:37 +00:00
}
2019-03-04 16:43:27 +00:00
}
2016-08-29 12:50:41 +00:00
}
dependencies {
2020-10-06 19:53:29 +00:00
// Kotlin
def coroutinesVersion = "1.4.1"
2020-01-02 17:00:37 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
2020-10-06 19:53:29 +00:00
// AndroidX
def navigationVersion = "2.3.3"
2020-09-02 14:00:57 +00:00
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'androidx.core:core-ktx:1.3.2'
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
implementation "androidx.navigation:navigation-ui-ktx:$navigationVersion"
2020-07-31 23:56:40 +00:00
implementation 'androidx.preference:preference-ktx:1.1.1'
implementation 'com.google.android.material:material:1.3.0'
2020-10-06 19:53:29 +00:00
// Gson
2020-07-31 23:56:40 +00:00
implementation 'com.google.code.gson:gson:2.8.6'
2020-01-02 17:00:37 +00:00
2020-10-06 19:53:29 +00:00
// OpenStreetMap
implementation 'org.osmdroid:osmdroid-android:6.1.10'
2016-08-29 12:50:41 +00:00
}