feat(store): Add android & iOS support (#1011)

* update cli

* init android module

* upgdate gitignore

* add desktop and mobile

* android

* ios

* lib

* remove comment

* cargo fmt

* skip empty file creation

* android comments

* apple path

* Discard changes to plugins/store/ios/README.md

* stop auto directories creation

* Update README.md
This commit is contained in:
Ahmed Elkhoudiry
2024-03-04 21:02:17 +02:00
committed by GitHub
parent 8a5e05cd83
commit 22f5acf240
17 changed files with 583 additions and 66 deletions
+4 -1
View File
@@ -8,5 +8,8 @@ const COMMANDS: &[&str] = &[
];
fn main() {
tauri_plugin::Builder::new(COMMANDS).build();
tauri_plugin::Builder::new(COMMANDS)
.android_path("android")
.ios_path("ios")
.build();
}