We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 969a205 + 3ca1e1f commit 7cc36ccCopy full SHA for 7cc36cc
src/sys.rs
@@ -3,7 +3,10 @@ use tauri::webview_version;
3
#[cfg(target_os = "linux")]
4
static ENGINE_NAME: &str = "WebKitGTK";
5
6
-#[cfg(target_os = "macos")]
+#[cfg(target_os = "android")]
7
+static ENGINE_NAME: &str = "Android System WebView";
8
+
9
+#[cfg(any(target_os = "macos", target_os = "ios"))]
10
static ENGINE_NAME: &str = "WebKit";
11
12
#[cfg(target_os = "windows")]
0 commit comments