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-android-extensions'
|
|
|
|
apply plugin: 'androidx.navigation.safeargs.kotlin'
|
2016-08-29 12:50:41 +00:00
|
|
|
|
|
|
|
android {
|
2020-10-05 12:00:44 +00:00
|
|
|
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
|
2020-10-05 12:00:44 +00:00
|
|
|
targetSdkVersion 30
|
2020-11-18 17:19:52 +00:00
|
|
|
versionCode 47
|
|
|
|
versionName '2.0.10'
|
2020-10-11 16:21:16 +00:00
|
|
|
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
|
|
|
}
|
2018-11-04 09:13:19 +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
|
|
|
}
|
2018-11-04 09:13:19 +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
|
2020-01-02 17:00:37 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2020-11-18 17:19:52 +00:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9'
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2020-10-06 19:53:29 +00:00
|
|
|
// AndroidX
|
2020-09-02 14:00:57 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
2020-11-18 17:19:52 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
2020-10-05 12:00:44 +00:00
|
|
|
implementation 'androidx.core:core-ktx:1.3.2'
|
2020-07-31 23:56:40 +00:00
|
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
|
|
|
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.1.1'
|
2020-11-18 17:19:52 +00:00
|
|
|
implementation 'com.google.android.material:material:1.2.1'
|
2018-11-04 09:13:19 +00:00
|
|
|
|
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
|
2020-07-31 23:56:40 +00:00
|
|
|
implementation 'org.osmdroid:osmdroid-android:6.1.8'
|
2020-01-02 17:00:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
androidExtensions {
|
|
|
|
experimental = true
|
2016-08-29 12:50:41 +00:00
|
|
|
}
|