This initial commit scaffolds the project with essential docs, assets, and build configs. It adds Android icons, design assets, and release metadata to support mobile targets. A fastlane config and F-Droid manifest are included to streamline builds. - Adds F-Droid configuration for automated builds - Includes license and privacy policy documents - Provides app icons and assets for Android and design system
20 lines
366 B
Rust
20 lines
366 B
Rust
const COMMANDS: &[&str] = &[
|
|
"get_state",
|
|
"get_gallery",
|
|
"select_images",
|
|
"delete_image",
|
|
"get_image_ids",
|
|
"delete_images",
|
|
"set_image_crop",
|
|
"set_setting",
|
|
"set_interval",
|
|
"next_wallpaper",
|
|
];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.android_path("android")
|
|
.ios_path("ios")
|
|
.build();
|
|
}
|