Skip to content

Commit 0a8762e

Browse files
authored
Merge pull request #100 from IABTechLab/dave/upgrade-agp
Upgrade AGP
2 parents 4a29a1e + 7ada6a6 commit 0a8762e

File tree

3 files changed

+10
-16
lines changed

3 files changed

+10
-16
lines changed

dev-app/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ android {
3333
}
3434

3535
lint {
36+
baseline = file("lint-baseline.xml")
3637
disable 'GradleDependency'
3738
}
3839
}

dev-app/lint-baseline.xml

+8-15
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<issues format="6" by="lint 7.4.2" type="baseline" client="gradle" dependencies="true" name="AGP (7.4.2)" variant="all" version="7.4.2">
2+
<issues format="6" by="lint 8.6.0" type="baseline" client="gradle" dependencies="false" name="AGP (8.6.0)" variant="all" version="8.6.0">
33

44
<issue
5-
id="DataExtractionRules"
6-
message="The attribute `android:allowBackup` is deprecated from Android 12 and higher and may be removed in future versions. Consider adding the attribute `android:dataExtractionRules` specifying an `@xml` resource which configures cloud backups and device transfers on Android 12 and higher."
7-
errorLine1=" android:allowBackup=&quot;false&quot;"
8-
errorLine2=" ~~~~~">
5+
id="WrongConstant"
6+
message="Must be one or more of: PackageManager.GET_META_DATA, PackageManager.GET_SHARED_LIBRARY_FILES, PackageManager.MATCH_UNINSTALLED_PACKAGES, PackageManager.MATCH_SYSTEM_ONLY, PackageManager.MATCH_DISABLED_COMPONENTS, PackageManager.MATCH_DISABLED_UNTIL_USED_COMPONENTS, PackageManager.GET_DISABLED_UNTIL_USED_COMPONENTS, PackageManager.GET_UNINSTALLED_PACKAGES, PackageManager.MATCH_APEX"
7+
errorLine1=" getApplicationInfo(packageName, PackageManager.ApplicationInfoFlags.of(flags.toLong()))"
8+
errorLine2=" ~~~~~~~~~~~~~~">
99
<location
10-
file="src/main/AndroidManifest.xml"
11-
line="12"
12-
column="30"/>
13-
</issue>
14-
15-
<issue
16-
id="UnusedResources"
17-
message="The resource `R.mipmap.ic_launcher_round` appears to be unused">
18-
<location
19-
file="src/main/res/mipmap-hdpi/ic_launcher_round.webp"/>
10+
file="src/main/java/com/uid2/dev/network/AppUID2Client.kt"
11+
line="202"
12+
column="88"/>
2013
</issue>
2114

2215
</issues>

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
agp = "8.5.2"
2+
agp = "8.6.0"
33
kotlin = "2.0.0"
44
core-ktx = "1.13.1"
55
junit = "4.13.2"

0 commit comments

Comments
 (0)