Skip to content

Commit c12a3bf

Browse files
committed
Update versions of AGP, Lint, and SDK
Target the latest versions of AGP (7.1.0-alpha12), Lint (30.1.0-alpha12), and compile/target SDK version (31). Test: ``./gradlew :app:lint` should only show one warning. Prior to this change additional warnings appeared (such as not targeting the latest versions of Android)
1 parent a184950 commit c12a3bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ buildscript {
66
lintVersion = '30.0.2'
77

88
// Upcoming lint target: Bumble Bee / AGP 7.1
9-
gradlePluginVersion = '7.1.0-alpha11'
10-
lintVersion = '30.1.0-alpha11'
9+
gradlePluginVersion = '7.1.0-alpha12'
10+
lintVersion = '30.1.0-alpha12'
1111
}
1212

1313
repositories {

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 30
4+
compileSdkVersion 31
55
defaultConfig {
66
minSdkVersion 15
7-
targetSdkVersion 30
7+
targetSdkVersion 31
88
}
99
compileOptions {
1010
sourceCompatibility JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)