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-01-02 17:00:37 +00:00
|
|
|
compileSdkVersion 29
|
2020-07-31 23:56:40 +00:00
|
|
|
buildToolsVersion "29.0.3"
|
2016-08-29 12:50:41 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-01-02 17:00:37 +00:00
|
|
|
applicationId 'org.y20k.trackbook'
|
|
|
|
minSdkVersion 25
|
2020-07-30 11:59:07 +00:00
|
|
|
targetSdkVersion 29
|
2020-07-28 14:28:30 +00:00
|
|
|
versionCode 42
|
|
|
|
versionName '2.0.5'
|
|
|
|
resConfigs "en", "da", "de", "fr", "hr", "id", "it", "ja", "nb-rNO", "nl", "sv", "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-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-07-31 23:56:40 +00:00
|
|
|
applicationIdSuffix ".debug"
|
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-07-31 23:56:40 +00:00
|
|
|
// Kotlin
|
2020-01-02 17:00:37 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2020-07-31 23:56:40 +00:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.4'
|
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.4'
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2020-07-31 23:56:40 +00:00
|
|
|
// AndroidX
|
2020-01-02 17:00:37 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
2020-07-31 23:56:40 +00:00
|
|
|
implementation 'androidx.core:core-ktx:1.3.1'
|
|
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
|
|
|
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.1.1'
|
|
|
|
implementation 'com.google.android.material:material:1.2.0-beta01'
|
2018-11-04 09:13:19 +00:00
|
|
|
|
2020-07-31 23:56:40 +00:00
|
|
|
// Gson
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
2020-01-02 17:00:37 +00:00
|
|
|
|
2020-07-31 23:56:40 +00:00
|
|
|
// OpenStreetMap
|
|
|
|
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
|
|
|
}
|