We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e44181 commit 9718dc9Copy full SHA for 9718dc9
.changes/readd-target-sdk-app.md
@@ -0,0 +1,6 @@
1
+---
2
+"tauri-cli": patch:bug
3
+"@tauri-apps/cli": patch:bug
4
5
+
6
+Reintroduce the `targetSdk` value in the Android application template.
tooling/cli/templates/mobile/android/app/build.gradle.kts
@@ -22,6 +22,7 @@ android {
22
manifestPlaceholders["usesCleartextTraffic"] = "false"
23
applicationId = "{{app.identifier}}"
24
minSdk = {{android.min-sdk-version}}
25
+ targetSdk = 34
26
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
27
versionName = tauriProperties.getProperty("tauri.android.versionName", "1.0")
28
}
0 commit comments