You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! WebView2 provided by Microsoft Edge Chromium is used. So wry supports Windows 7, 8, 10 and 11.
261
262
//!
262
263
//! ### Android
263
264
//!
264
265
//! In order for `wry` to be able to create webviews on Android, there are a few requirements that your application needs to uphold:
266
+
//!
265
267
//! 1. You need to set a few environment variables that will be used to generate the necessary kotlin
266
268
//! files that you need to include in your Android application for wry to function properly.
267
269
//! - `WRY_ANDROID_PACKAGE`: which is the reversed domain name of your android project and the app name in snake_case, for example, `com.wry.example.wry_app`
@@ -271,7 +273,7 @@
271
273
//! 3. Your Rust app needs to call `wry::android_setup` function to setup the necessary logic to be able to create webviews later on.
272
274
//! 4. Your Rust app needs to call `wry::android_binding!` macro to setup the JNI functions that will be called by `WryActivity` and various other places.
273
275
//!
274
-
//! It is recommended to use [`tao`](https://docs.rs/tao/latest/tao/) crate as it provides maximum compatibility with `wry`
276
+
//! It is recommended to use the [`tao`](https://docs.rs/tao/latest/tao/) crate as it provides maximum compatibility with `wry`.
0 commit comments