Skip to content

Commit

Permalink
stop newer version warnings from failing builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjroach committed Nov 30, 2023
1 parent d295139 commit 17cdccc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ class AndroidLibraryConventionPlugin : Plugin<Project> {
lint {
warningsAsErrors = true
abortOnError = true
enable += listOf("UnusedResources", "NewerVersionAvailable")
disable += listOf("GradleDependency")
enable += listOf("UnusedResources")
disable += listOf("GradleDependency", "NewerVersionAvailable")
}

compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.2.0"
agp = "8.1.4"
amplify = "2.14.5"
cameraX = "1.2.0"
compose = "1.5.4"
Expand Down

0 comments on commit 17cdccc

Please sign in to comment.