Skip to content

Commit

Permalink
chore: Updates Gradle to 8.3.2. Min Android SDK version to 21 (#1346)
Browse files Browse the repository at this point in the history
* chore: Updates gradle to 8.3.2. Min Android SDK version to 21.

* chore: updates gradle to 8.4.0

---------

Co-authored-by: dkhawk <dkhawk@google.com>
  • Loading branch information
dkhawk and dkhawk authored May 7, 2024
1 parent bfb6353 commit bd751f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
classpath 'com.android.tools.build:gradle:8.4.0'
classpath 'com.mxalbert.gradle:jacoco-android:0.2.1'
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down
4 changes: 2 additions & 2 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
defaultConfig {
compileSdk 34
applicationId "com.google.maps.android.utils.demo"
minSdkVersion 19
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
Expand All @@ -50,7 +50,7 @@ dependencies {
// [START_EXCLUDE silent]
implementation project(':library')

implementation 'androidx.appcompat:appcompat:1.7.0-alpha03'
implementation 'androidx.appcompat:appcompat:1.7.0-beta01'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'

implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0"
Expand Down
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Tue May 07 09:24:19 MDT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {

defaultConfig {
compileSdk 34
minSdkVersion 19
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -64,7 +64,7 @@ dependencies {
api 'com.google.android.gms:play-services-maps:18.2.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.core:core-ktx:1.13.0'
implementation 'androidx.core:core-ktx:1.13.1'
lintPublish project(':lint-checks')
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.robolectric:robolectric:4.12.1'
Expand Down
6 changes: 3 additions & 3 deletions lint-checks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ lintOptions {
}

dependencies {
compileOnly "com.android.tools.lint:lint-api:31.3.2"
compileOnly "com.android.tools.lint:lint-checks:31.3.2"
compileOnly "com.android.tools.lint:lint-api:31.4.0"
compileOnly "com.android.tools.lint:lint-checks:31.4.0"
// compileOnly "com.android.tools.lint:manifest-merger:31.1.0"
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
testImplementation "junit:junit:4.13.2"
testImplementation "com.android.tools.lint:lint:31.3.2"
testImplementation "com.android.tools.lint:lint:31.4.0"
testImplementation "com.android.tools.lint:lint-tests:31.4.0"
testImplementation "com.android.tools:testutils:31.4.0"
}
Expand Down

0 comments on commit bd751f9

Please sign in to comment.