Skip to content

Commit 7581576

Browse files
authored
chore: update Android target SDK to 34 (#1368)
1 parent 430bd6f commit 7581576

File tree

14 files changed

+51
-24
lines changed

14 files changed

+51
-24
lines changed

.changes/target-sdk-34.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"barcode-scanner": patch
3+
"biometric": patch
4+
"clipboard-manager": patch
5+
"deep-link": patch
6+
"dialog": patch
7+
"nfc": patch
8+
"notification": patch
9+
"shell": patch
10+
"store": patch
11+
---
12+
13+
Updated Android target SDK to 34.

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

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

77
android {
8-
compileSdk = 33
8+
compileSdk = 34
99
namespace = "com.tauri.api"
1010
defaultConfig {
1111
manifestPlaceholders["usesCleartextTraffic"] = "false"
1212
applicationId = "com.tauri.api"
1313
minSdk = 24
14-
targetSdk = 33
14+
targetSdk = 34
1515
versionCode = 1
1616
versionName = "1.0"
1717
}

examples/api/src-tauri/gen/schemas/desktop-schema.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6319,6 +6319,13 @@
63196319
"window:allow-minimize"
63206320
]
63216321
},
6322+
{
6323+
"description": "window:allow-monitor-from-point -> Enables the monitor_from_point command without any pre-configured scope.",
6324+
"type": "string",
6325+
"enum": [
6326+
"window:allow-monitor-from-point"
6327+
]
6328+
},
63226329
{
63236330
"description": "window:allow-outer-position -> Enables the outer_position command without any pre-configured scope.",
63246331
"type": "string",
@@ -6753,6 +6760,13 @@
67536760
"window:deny-minimize"
67546761
]
67556762
},
6763+
{
6764+
"description": "window:deny-monitor-from-point -> Denies the monitor_from_point command without any pre-configured scope.",
6765+
"type": "string",
6766+
"enum": [
6767+
"window:deny-monitor-from-point"
6768+
]
6769+
},
67566770
{
67576771
"description": "window:deny-outer-position -> Denies the outer_position command without any pre-configured scope.",
67586772
"type": "string",

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

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

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

1010
defaultConfig {
1111
minSdk = 24
12-
targetSdk = 32
12+
targetSdk = 34
1313

1414
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1515
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,11 +5,11 @@ plugins {
55

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

1010
defaultConfig {
1111
minSdk = 24
12-
targetSdk = 32
12+
targetSdk = 34
1313

1414
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1515
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,11 +5,11 @@ plugins {
55

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

1010
defaultConfig {
1111
minSdk = 24
12-
targetSdk = 32
12+
targetSdk = 34
1313

1414
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1515
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,11 +5,11 @@ plugins {
55

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

1010
defaultConfig {
1111
minSdk = 24
12-
targetSdk = 32
12+
targetSdk = 34
1313

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

plugins/deep-link/examples/app/src-tauri/gen/android/app/build.gradle.kts

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

77
android {
8-
compileSdk = 33
8+
compileSdk = 34
99
namespace = "com.tauri.deep_link_example"
1010
defaultConfig {
1111
manifestPlaceholders["usesCleartextTraffic"] = "false"
1212
applicationId = "com.tauri.deep_link_example"
1313
minSdk = 24
14-
targetSdk = 33
14+
targetSdk = 34
1515
versionCode = 1
1616
versionName = "1.0"
1717
}

plugins/dialog/android/build.gradle.kts

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

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

1010
defaultConfig {
1111
minSdk = 24
12-
targetSdk = 32
12+
targetSdk = 34
1313

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

plugins/nfc/android/build.gradle.kts

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

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

1010
defaultConfig {
1111
minSdk = 24
12-
targetSdk = 33
12+
targetSdk = 34
1313

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

0 commit comments

Comments
 (0)