File tree 4 files changed +15
-5
lines changed
4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " tauri " : patch:enhance
3
+ " tauri-runtime " : patch:enhance
4
+ ---
5
+
6
+ Include mobile on docs.rs targets.
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ default-target = "x86_64-unknown-linux-gnu"
19
19
targets = [
20
20
" x86_64-pc-windows-msvc" ,
21
21
" x86_64-unknown-linux-gnu" ,
22
- " x86_64-apple-darwin"
22
+ " x86_64-apple-darwin" ,
23
+ " x86_64-linux-android" ,
24
+ " x86_64-apple-ios"
23
25
]
24
26
25
27
[dependencies ]
Original file line number Diff line number Diff line change @@ -30,7 +30,9 @@ default-target = "x86_64-unknown-linux-gnu"
30
30
targets = [
31
31
" x86_64-pc-windows-msvc" ,
32
32
" x86_64-unknown-linux-gnu" ,
33
- " x86_64-apple-darwin"
33
+ " x86_64-apple-darwin" ,
34
+ " x86_64-linux-android" ,
35
+ " x86_64-apple-ios"
34
36
]
35
37
36
38
[package .metadata .cargo-udeps .ignore ]
Original file line number Diff line number Diff line change @@ -160,9 +160,9 @@ impl<T: UserEvent> RuntimeHandle<T> for MockRuntimeHandle {
160
160
161
161
#[ cfg( target_os = "android" ) ]
162
162
fn find_class < ' a > (
163
- & ' a self ,
164
- env : & ' a mut jni:: JNIEnv < ' a > ,
165
- activity : & ' a jni:: objects:: JObject < ' a > ,
163
+ & self ,
164
+ env : & mut jni:: JNIEnv < ' a > ,
165
+ activity : & jni:: objects:: JObject < ' _ > ,
166
166
name : impl Into < String > ,
167
167
) -> std:: result:: Result < jni:: objects:: JClass < ' a > , jni:: errors:: Error > {
168
168
todo ! ( )
You can’t perform that action at this time.
0 commit comments