Skip to content

Commit 3db2ab6

Browse files
authored
Upgrade AGP from version 8.2.1 to 8.8.0 (#652)
1 parent 293cd53 commit 3db2ab6

File tree

3 files changed

+8
-16
lines changed

3 files changed

+8
-16
lines changed

sample/app/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id 'com.android.application'
33
id 'org.jetbrains.kotlin.android'
4+
id 'com.google.gms.google-services'
45
}
56

67
android {
@@ -48,16 +49,16 @@ android {
4849

4950
dependencies {
5051
// Compose
51-
def composeBom = platform("androidx.compose:compose-bom:2024.10.01")
52+
def composeBom = platform("androidx.compose:compose-bom:2024.12.01")
5253
implementation composeBom
5354
implementation "androidx.compose.ui:ui"
5455
implementation "androidx.compose.material3:material3"
5556
implementation "androidx.compose.ui:ui-tooling-preview"
5657
debugImplementation "androidx.compose.ui:ui-tooling"
5758

5859
implementation 'androidx.core:core-ktx:1.13.1'
59-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.1'
60-
implementation 'androidx.activity:activity-compose:1.7.2'
60+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
61+
implementation 'androidx.activity:activity-compose:1.9.3'
6162
implementation("androidx.navigation:navigation-compose:2.7.7")
6263

6364
implementation "com.google.accompanist:accompanist-flowlayout:0.27.0"
@@ -67,5 +68,3 @@ dependencies {
6768
implementation("io.intercom.android:intercom-sdk:15.12.0")
6869
implementation("com.google.firebase:firebase-messaging:24.1.0")
6970
}
70-
71-
apply plugin: 'com.google.gms.google-services'

sample/build.gradle

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
1-
buildscript {
2-
ext {
3-
composeMaterial = '1.3.1'
4-
}
5-
dependencies {
6-
classpath 'com.android.tools.build:gradle:8.2.1'
7-
classpath 'com.google.gms:google-services:4.3.15'
8-
}
9-
}
101
plugins {
2+
id 'com.android.application' version '8.8.0' apply false
3+
id 'com.google.gms.google-services' version '4.4.2' apply false
114
id 'org.jetbrains.kotlin.android' version '1.8.22' apply false
125
}
136

14-
task clean(type: Delete) {
7+
tasks.register('clean', Delete) {
158
delete rootProject.buildDir
169
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Feb 16 15:00:53 GMT 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)