Skip to content

Commit 6c9b61f

Browse files
authored
chore: Update compileSdk to 36 (#3039)
1 parent 6b5b105 commit 6c9b61f

File tree

17 files changed

+57
-30
lines changed

17 files changed

+57
-30
lines changed

.changes/compilesdk35.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
barcode-scanner: patch
3+
barcode-scanner-js: patch
4+
biometric: patch
5+
biometric-js: patch
6+
clipboard-manager: patch
7+
clipboard-manager-js: patch
8+
deep-link: patch
9+
deep-link-js: patch
10+
dialog: patch
11+
dialog-js: patch
12+
fs: patch
13+
fs-js: patch
14+
geolocation: patch
15+
geolocation-js: patch
16+
haptics: patch
17+
haptics-js: patch
18+
nfc: patch
19+
nfc-js: patch
20+
notification: patch
21+
notification-js: patch
22+
opener: patch
23+
opener-js: patch
24+
shell: patch
25+
shell-js: patch
26+
---
27+
28+
On Android, updated compileSdk to 36.

examples/api/src-tauri/gen/android/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ val tauriProperties = Properties().apply {
1414
}
1515

1616
android {
17-
compileSdk = 34
17+
compileSdk = 36
1818
namespace = "com.tauri.api"
1919
defaultConfig {
2020
manifestPlaceholders["usesCleartextTraffic"] = "false"
2121
applicationId = "com.tauri.api"
2222
minSdk = 24
23-
targetSdk = 34
23+
targetSdk = 36
2424
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
2525
versionName = tauriProperties.getProperty("tauri.android.versionName", "1.0")
2626
}

examples/api/src-tauri/gen/android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath("com.android.tools.build:gradle:8.5.1")
7+
classpath("com.android.tools.build:gradle:8.11.0")
88
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
99
}
1010
}

examples/api/src-tauri/gen/android/buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ repositories {
1818

1919
dependencies {
2020
compileOnly(gradleApi())
21-
implementation("com.android.tools.build:gradle:8.5.1")
21+
implementation("com.android.tools.build:gradle:8.11.0")
2222
}
2323

plugins/barcode-scanner/android/build.gradle.kts

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

66
android {
77
namespace = "app.tauri.barcodescanner"
8-
compileSdk = 34
8+
compileSdk = 36
99

1010
defaultConfig {
11-
minSdk = 24
11+
minSdk = 24
1212

1313
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1414
consumerProguardFiles("consumer-rules.pro")

plugins/biometric/android/build.gradle.kts

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

66
android {
77
namespace = "app.tauri.biometric"
8-
compileSdk = 34
8+
compileSdk = 36
99

1010
defaultConfig {
11-
minSdk = 24
11+
minSdk = 24
1212

1313
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1414
consumerProguardFiles("consumer-rules.pro")

plugins/clipboard-manager/android/build.gradle.kts

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

66
android {
77
namespace = "app.tauri.clipboard"
8-
compileSdk = 34
8+
compileSdk = 36
99

1010
defaultConfig {
11-
minSdk = 24
11+
minSdk = 24
1212

1313
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1414
consumerProguardFiles("consumer-rules.pro")

plugins/deep-link/android/build.gradle.kts

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

66
android {
77
namespace = "app.tauri.deep_link"
8-
compileSdk = 34
8+
compileSdk = 36
99

1010
defaultConfig {
11-
minSdk = 24
11+
minSdk = 24
1212

1313
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1414
consumerProguardFiles("consumer-rules.pro")

plugins/dialog/android/build.gradle.kts

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

66
android {
77
namespace = "app.tauri.dialog"
8-
compileSdk = 34
8+
compileSdk = 36
99

1010
defaultConfig {
11-
minSdk = 24
11+
minSdk = 24
1212

1313
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1414
consumerProguardFiles("consumer-rules.pro")

plugins/fs/android/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ plugins {
55

66
android {
77
namespace = "com.plugin.fs"
8-
compileSdk = 34
8+
compileSdk = 36
99

1010
defaultConfig {
1111
minSdk = 21
12-
targetSdk = 34
1312

1413
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1514
consumerProguardFiles("consumer-rules.pro")

0 commit comments

Comments
 (0)