Fix some gradle deprecations
This commit is contained in:
parent
28432b5629
commit
87067af965
|
@ -43,8 +43,8 @@ android {
|
|||
|
||||
signingConfigs {
|
||||
releaseConfig {
|
||||
v1SigningEnabled true
|
||||
v2SigningEnabled true
|
||||
enableV1Signing true
|
||||
enableV2Signing true
|
||||
|
||||
if (project.hasProperty("releaseStoreFile")) {
|
||||
storeFile file(releaseStoreFile)
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
android {
|
||||
compileSdkVersion 31
|
||||
compileSdk 31
|
||||
|
||||
defaultConfig {
|
||||
minSdkVersion 19
|
||||
targetSdkVersion 30
|
||||
minSdk 19
|
||||
targetSdk 30
|
||||
|
||||
multiDexEnabled false
|
||||
vectorDrawables.useSupportLibrary true
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../common.gradle"
|
||||
apply from: "../playFlavor.gradle"
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
apply from: "../../playFlavor.gradle"
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
|
||||
android {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
apply from: "../../playFlavor.gradle"
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
|
||||
dependencies {
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
apply plugin: "com.android.library"
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
}
|
||||
apply from: "../../common.gradle"
|
||||
|
||||
android {
|
||||
|
|
Loading…
Reference in New Issue