Updated buildTools, Gradle plugin

This commit is contained in:
Adolfo Santiago 2022-01-30 11:28:15 +01:00
parent a63c7dc96f
commit 32eb46b787
No known key found for this signature in database
GPG key ID: 244D6F9A317B4A65
3 changed files with 15 additions and 3 deletions

View file

@ -129,12 +129,24 @@ android {
}
}
lint {
/*lint {
// isAbortOnError = true
disable("MissingTranslation")
disable("ExtraTranslation")
disable("AppCompatCustomView")
disable("UseRequireInsteadOfGet")
}*/
lint {
// abortOnError = true
disable.addAll(
listOf(
"MissingTranslation",
"ExtraTranslation",
"AppCompatCustomView",
"UseRequireInsteadOfGet"
)
)
}
compileOptions {

View file

@ -172,7 +172,7 @@ object ApplicationLibs {
object GradlePlugins {
object Versions {
const val gradle = "7.0.4"
const val gradle = "7.1.0"
const val gradleVersions = "0.39.0"
}

View file

@ -7,7 +7,7 @@ const val kotlinVersion = "1.5.32"
object AndroidSDK {
const val compileSdk = 30
const val buildTools = "30.0.3"
const val buildTools = "32.0.0"
}
object CustomHuskyBuild {