Fix some gradle deprecations

This commit is contained in:
TacoTheDank 2022-02-09 11:28:40 -05:00
parent 28432b5629
commit 87067af965
15 changed files with 44 additions and 18 deletions

View File

@ -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)

View File

@ -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

View File

@ -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"

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../common.gradle" apply from: "../common.gradle"
dependencies { dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../common.gradle" apply from: "../common.gradle"
dependencies { dependencies {

View File

@ -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"

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../../common.gradle" apply from: "../../../common.gradle"
dependencies { dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../../common.gradle" apply from: "../../../common.gradle"
dependencies { dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../common.gradle" apply from: "../../common.gradle"
android { android {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../common.gradle" apply from: "../../common.gradle"
dependencies { dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../common.gradle" apply from: "../../common.gradle"
dependencies { dependencies {

View File

@ -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"

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../common.gradle" apply from: "../../common.gradle"
dependencies { dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../common.gradle" apply from: "../../common.gradle"
dependencies { dependencies {

View File

@ -1,4 +1,6 @@
apply plugin: "com.android.library" plugins {
id("com.android.library")
}
apply from: "../../common.gradle" apply from: "../../common.gradle"
android { android {