Skip to content

Commit 53423e2

Browse files
committed
feat: upgrade target and compile SDK to API 35
- Updated compileSdk and targetSdk from 34 to 35 - Updated Android Gradle Plugin from 8.5.2 to 8.11.0 - Updated Gradle wrapper from 8.5 to 8.13 - Successfully tested on Pixel 7 API 35 emulator - All permissions (camera, location) work correctly - App launches and functions normally Fixes #1160
1 parent 81d94d5 commit 53423e2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ def loadExtraProperties(String fileName) {
1818
loadExtraProperties("treetracker.keys.properties")
1919

2020
android {
21-
compileSdkVersion 34
21+
compileSdkVersion 35
2222
defaultConfig {
2323
applicationId "org.greenstand.android.TreeTracker"
2424
minSdkVersion 21
25-
targetSdkVersion 34
25+
targetSdkVersion 35
2626
versionCode 197
2727
versionName "2.2.0"
2828
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
}
1212

1313
dependencies {
14-
classpath 'com.android.tools.build:gradle:8.5.2'
14+
classpath 'com.android.tools.build:gradle:8.11.0'
1515
classpath 'com.google.gms:google-services:4.4.2'
1616
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.9'
1717
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

codeAnalysis.sh

100644100755
File mode changed.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)