| 1 | const COMMANDS: &[&str] = &[ |
| 2 | "trackingAuthorizationStatus", |
| 3 | "requestTrackingAuthorization", |
| 4 | "configure", |
| 5 | "configRequest", |
| 6 | "adCreate", |
| 7 | "adIsLoaded", |
| 8 | "adLoad", |
| 9 | "adShow", |
| 10 | "adHide", |
| 11 | "isPrivacyOptionsRequired", |
| 12 | "showPrivacyOptionsForm", |
| 13 | "register_listener", |
| 14 | ]; |
| 15 | |
| 16 | fn main() { |
| 17 | tauri_plugin::Builder::new(COMMANDS) |
| 18 | .android_path("android") |
| 19 | .ios_path("ios") |
| 20 | .build(); |
| 21 | } |