tauri-plugin-keep-screen-on/build.rs
Krzysztof Andrelczyk a99d4bfcb3 fixed params
2024-08-07 00:12:20 +02:00

8 lines
165 B
Rust

const COMMANDS: &[&str] = &["keep_screen_on"];
fn main() {
tauri_plugin::Builder::new(COMMANDS)
.android_path("android")
.ios_path("ios")
.build();
}