Skip to content

Commit a24a223

Browse files
author
Alex J Lennon
committed
Fix Android CI: AGP 8.7.2, compileSdk 35, Gradle 8.9
Compose BOM and AndroidX deps require AGP 8.6+ and compileSdk 35.
1 parent e9693d9 commit a24a223

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/android-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Gradle
3030
uses: gradle/actions/setup-gradle@v4
3131
with:
32-
gradle-version: "8.5"
32+
gradle-version: "8.9"
3333
cache-read-only: false
3434

3535
- name: Create local.properties with GitHub token

samples/CameraAccessAndroid/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ plugins {
55

66
android {
77
namespace = "com.dynamicdevices.visionclaw"
8-
compileSdk = 34
8+
compileSdk = 35
99

1010
defaultConfig {
1111
applicationId = "com.dynamicdevices.visionclaw"
1212
minSdk = 26
13-
targetSdk = 34
13+
targetSdk = 35
1414
versionCode = 1
1515
versionName = "1.0.0"
1616
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
plugins {
2-
id("com.android.application") version "8.2.2" apply false
2+
id("com.android.application") version "8.7.2" apply false
33
id("org.jetbrains.kotlin.android") version "1.9.22" apply false
44
}

samples/CameraAccessAndroid/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
agp = "8.2.2"
2+
agp = "8.7.2"
33
kotlin = "1.9.22"
44
coreKtx = "1.12.0"
55
lifecycleRuntimeKtx = "2.7.0"

samples/CameraAccessAndroid/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)