We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b6837c commit 397b364Copy full SHA for 397b364
1 file changed
plugins/recent-doc/build.rs
@@ -9,14 +9,7 @@ const COMMANDS: &[&str] = &[
9
];
10
11
fn main() {
12
- let result = tauri_plugin::Builder::new(COMMANDS)
+ tauri_plugin::Builder::new(COMMANDS)
13
.global_api_script_path("./api-iife.js")
14
- .android_path("android")
15
- .ios_path("ios")
16
- .try_build();
17
-
18
- // when building documentation for Android the plugin build result is always Err() and is irrelevant to the crate documentation build
19
- if !(cfg!(docsrs) && std::env::var("TARGET").unwrap().contains("android")) {
20
- result.unwrap();
21
- }
+ .build();
22
}
0 commit comments