2021-01-19 13:14:52 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'com.google.protobuf'
|
|
|
|
id 'kotlin-android'
|
|
|
|
id 'kotlin-kapt'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "de.grobox.storagebackuptester"
|
|
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
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 {
|
2022-08-19 17:42:42 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
2021-01-19 13:14:52 +01:00
|
|
|
}
|
|
|
|
kotlinOptions {
|
2022-08-19 17:42:42 +02:00
|
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
2021-01-19 13:14:52 +01:00
|
|
|
freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
|
|
|
|
}
|
2021-10-07 18:44:55 +02:00
|
|
|
lintOptions {
|
|
|
|
disable "DialogFragmentCallbacksDetector",
|
|
|
|
"InvalidFragmentVersionForActivityResult"
|
|
|
|
}
|
2021-01-19 13:14:52 +01:00
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/*.kotlin_module'
|
|
|
|
exclude 'META-INF/androidx.*.version'
|
|
|
|
exclude 'META-INF/services/kotlin*'
|
|
|
|
exclude 'kotlin/internal/internal.kotlin_builtins'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|