trkpt/app/build.gradle

80 lines
2.5 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 {
2023-03-07 04:52:41 +00:00
compileSdkVersion 33
2016-08-29 12:50:41 +00:00
defaultConfig {
2023-03-07 04:52:41 +00:00
applicationId 'net.voussoir.trkpt'
2020-01-02 17:00:37 +00:00
minSdkVersion 25
2023-03-07 04:52:41 +00:00
targetSdk 32
2023-09-03 18:24:19 +00:00
versionCode 56
versionName '1.2.0'
2021-09-30 08:06:38 +00:00
resConfigs "en", "da", "de", "fr", "hr", "id", "it", "ja", "nb-rNO", "nl", "pl", "pt-rBR", "ru", "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 {
2023-03-23 00:23:20 +00:00
applicationIdSuffix '.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
2023-03-07 04:52:41 +00:00
def coroutinesVersion = '1.6.4'
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
2023-03-07 04:52:41 +00:00
def navigationVersion = '2.5.3'
implementation 'androidx.activity:activity-ktx:1.6.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-ktx:1.9.0'
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
2023-03-07 04:52:41 +00:00
implementation "androidx.navigation:navigation-ui-ktx:2.5.3"
implementation 'androidx.preference:preference-ktx:1.2.0'
2023-03-07 04:52:41 +00:00
implementation 'com.google.android.material:material:1.9.0-alpha02'
2020-10-06 19:53:29 +00:00
// Gson
2023-03-07 04:52:41 +00:00
implementation 'com.google.code.gson:gson:2.10.1'
2020-01-02 17:00:37 +00:00
2020-10-06 19:53:29 +00:00
// OpenStreetMap
2023-03-07 04:52:41 +00:00
implementation 'org.osmdroid:osmdroid-android:6.1.14'
2023-03-29 01:16:53 +00:00
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.10'
2016-08-29 12:50:41 +00:00
}