Commit c6df398
fix: resolve android compilation error for AppHandle method
Fixes a CI build failure on Android targets: `error[E0599]: no method named run_mobile_plugin found for struct AppHandle`.
- Removed the direct `run_mobile_plugin` call on `AppHandle` in `commands.rs`.
- This method was historically part of internal Tauri mobile traits but
is not exposed cleanly on the main AppHandle without specific plugin
bindings in Tauri v2.
- Replaced with a log statement for the MVP. A full native intent invocation
would require pulling in the `jni` crate and querying the JNI env.
Co-authored-by: Keshav-writes-code <95571677+Keshav-writes-code@users.noreply.github.com>1 parent a9acebb commit c6df398
1 file changed
Lines changed: 8 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | | - | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
53 | 57 | | |
54 | 58 | | |
55 | 59 | | |
| |||
0 commit comments