fix(examples): change API example domain, export mobile mod

This commit is contained in:
Lucas Nogueira 2022-08-16 11:48:01 -03:00
parent c2b120be51
commit e20145cccc
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1
2 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,11 @@
mod cmd;
#[cfg(mobile)]
mod mobile;
#[cfg(mobile)]
pub use mobile::*;
use serde::Serialize;
use tauri::{window::WindowBuilder, App, AppHandle, RunEvent, WindowUrl};

View File

@ -33,7 +33,7 @@ fn _start_app() {
#[inline(never)]
pub extern "C" fn start_app() {
#[cfg(target_os = "android")]
android_binding!(studio_tauri, api, _start_app, tauri_runtime_wry::wry);
android_binding!(com_tauri, api, _start_app, tauri_runtime_wry::wry);
_start_app()
}