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.
tauri plugin android init
1 parent fb0d997 commit aa06a05Copy full SHA for aa06a05
2 files changed
.changes/cli-plugin-android-init.md
@@ -0,0 +1,6 @@
1
+---
2
+"tauri-cli": patch:bug
3
+"@tauri-apps/cli": patch:bug
4
5
+
6
+Fix `tauri plugin android init` printing invalid code that has a missing closing `"`.
tooling/cli/src/plugin/android.rs
@@ -114,7 +114,7 @@ pub fn init<R: Runtime>() -> TauriPlugin<R> {{
114
Builder::new("{name}")
115
.setup(|app, api| {{
116
#[cfg(target_os = "android")]
117
- let handle = api.register_android_plugin("{identifier}, "ExamplePlugin")?;
+ let handle = api.register_android_plugin("{identifier}", "ExamplePlugin")?;
118
Ok(())
119
}})
120
.build()
0 commit comments