diff --git a/app/build.gradle b/app/build.gradle index bdc53e020b..c8abfcc6fb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -55,8 +55,8 @@ android { } } - viewBinding { - enabled = true + buildFeatures { + viewBinding = true } buildTypes { @@ -92,6 +92,10 @@ android { exclude 'META-INF/NOTICE' } + dependenciesInfo { + includeInApk = false + } + lintOptions { abortOnError false checkReleaseBuilds false diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index 0ae0ed61e7..431f2c4a68 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -3,7 +3,7 @@ object Versions { } object BuildPluginsVersion { - const val AGP = "3.6.3" + const val AGP = "4.0.0" const val KOTLIN = "1.3.72" const val KTLINT = "9.2.1" const val VERSIONS_PLUGIN = "0.28.0"