Updated buildTools, Gradle plugin
This commit is contained in:
parent
a63c7dc96f
commit
32eb46b787
3 changed files with 15 additions and 3 deletions
|
@ -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 {
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue