2023-03-02 17:15:28 +01:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2021 The Calyx Institute
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2021-01-19 13:14:52 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'com.google.protobuf'
|
2023-03-27 10:15:48 +02:00
|
|
|
id 'org.jetbrains.kotlin.android'
|
|
|
|
id 'org.jetbrains.kotlin.kapt'
|
2021-01-19 13:14:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-08-02 17:52:41 +02:00
|
|
|
namespace 'de.grobox.storagebackuptester'
|
2023-08-02 17:49:20 +02:00
|
|
|
compileSdk rootProject.ext.compileSdk
|
2021-01-19 13:14:52 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "de.grobox.storagebackuptester"
|
2023-08-02 17:49:20 +02:00
|
|
|
minSdk rootProject.ext.minSdk
|
|
|
|
targetSdk rootProject.ext.targetSdk
|
2021-03-05 18:33:12 +01:00
|
|
|
versionCode 20
|
|
|
|
versionName "0.9.7"
|
2021-01-19 13:14:52 +01:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
testInstrumentationRunnerArguments disableAnalytics: 'true'
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
2023-10-07 21:13:21 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2021-01-19 13:14:52 +01:00
|
|
|
}
|
|
|
|
kotlinOptions {
|
2023-10-07 21:13:21 +02:00
|
|
|
jvmTarget = JavaVersion.VERSION_17.toString()
|
2023-03-27 12:20:03 +02:00
|
|
|
freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
|
2021-01-19 13:14:52 +01:00
|
|
|
}
|
2023-08-02 18:41:27 +02:00
|
|
|
lint {
|
2021-10-07 18:44:55 +02:00
|
|
|
disable "DialogFragmentCallbacksDetector",
|
|
|
|
"InvalidFragmentVersionForActivityResult"
|
|
|
|
}
|
2021-01-19 13:14:52 +01:00
|
|
|
packagingOptions {
|
2023-08-02 18:41:27 +02:00
|
|
|
jniLibs {
|
|
|
|
excludes += ['META-INF/services/kotlin*']
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
excludes += [
|
|
|
|
'META-INF/*.kotlin_module',
|
|
|
|
'META-INF/androidx.*.version',
|
|
|
|
'META-INF/services/kotlin*',
|
|
|
|
'kotlin/internal/internal.kotlin_builtins'
|
|
|
|
]
|
|
|
|
}
|
2021-01-19 13:14:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':storage:lib')
|
|
|
|
|
2021-10-07 18:44:55 +02:00
|
|
|
implementation rootProject.ext.kotlin_libs.std
|
|
|
|
|
2021-01-19 13:14:52 +01:00
|
|
|
implementation rootProject.ext.std_libs.androidx_core
|
|
|
|
// A newer version gets pulled in with AOSP via core, so we include fragment here explicitly
|
|
|
|
implementation rootProject.ext.std_libs.androidx_fragment
|
2021-10-07 18:44:55 +02:00
|
|
|
implementation rootProject.ext.std_libs.androidx_activity
|
2021-01-19 13:14:52 +01:00
|
|
|
implementation rootProject.ext.std_libs.androidx_lifecycle_viewmodel_ktx
|
|
|
|
implementation rootProject.ext.std_libs.androidx_lifecycle_livedata_ktx
|
|
|
|
implementation rootProject.ext.std_libs.androidx_constraintlayout
|
|
|
|
implementation rootProject.ext.std_libs.com_google_android_material
|
|
|
|
|
|
|
|
implementation rootProject.ext.storage_libs.com_google_protobuf_javalite
|
|
|
|
}
|