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