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
25 lines
611 B
TOML
25 lines
611 B
TOML
[package]
|
|
name = "lockscreenwallpaper"
|
|
version = "0.1.0"
|
|
description = "Unbegrenzter Sperrbildschirm-Wechsel für Android"
|
|
authors = ["LockScreenWallpaper"]
|
|
license = "GPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "lockscreenwallpaper_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri-plugin-wallpaper = { path = "../plugins" }
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|