Switch to new Sdk version properties
Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
parent
cba065fe56
commit
b330b7baa6
5 changed files with 15 additions and 15 deletions
|
@ -14,11 +14,11 @@ def gitDescribe = { ->
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
compileSdk rootProject.ext.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 32 // leave at 32 for robolectric tests
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
minSdk 32 // leave at 32 for robolectric tests
|
||||
targetSdk rootProject.ext.targetSdk
|
||||
versionNameSuffix "-$gitDescribe"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
testInstrumentationRunnerArguments disableAnalytics: 'true'
|
||||
|
|
|
@ -20,9 +20,9 @@ plugins {
|
|||
}
|
||||
|
||||
ext {
|
||||
compileSdkVersion = 33
|
||||
minSdkVersion = 32
|
||||
targetSdkVersion = 33
|
||||
compileSdk = 33
|
||||
minSdk = 32
|
||||
targetSdk = 33
|
||||
}
|
||||
|
||||
apply from: 'gradle/dependencies.gradle'
|
||||
|
|
|
@ -9,12 +9,12 @@ plugins {
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
compileSdk rootProject.ext.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
applicationId "org.calyxos.backup.contacts"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
minSdk rootProject.ext.minSdk
|
||||
targetSdk rootProject.ext.targetSdk
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
testInstrumentationRunnerArguments disableAnalytics: 'true'
|
||||
|
|
|
@ -11,12 +11,12 @@ plugins {
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
compileSdk rootProject.ext.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
applicationId "de.grobox.storagebackuptester"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
minSdk rootProject.ext.minSdk
|
||||
targetSdk rootProject.ext.targetSdk
|
||||
versionCode 20
|
||||
versionName "0.9.7"
|
||||
|
||||
|
|
|
@ -13,11 +13,11 @@ plugins {
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion rootProject.ext.compileSdkVersion
|
||||
compileSdk rootProject.ext.compileSdk
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
minSdk rootProject.ext.minSdk
|
||||
targetSdk rootProject.ext.targetSdk
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
testInstrumentationRunnerArguments disableAnalytics: 'true'
|
||||
|
|
Loading…
Reference in a new issue