Android: Bump ndk/ndk-glue version (#2047)

This commit is contained in:
Markus Siglreithmaier 2021-11-02 18:54:59 +01:00 committed by GitHub
parent ed698f2462
commit 5f4df54895
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View file

@ -18,6 +18,7 @@
- On X11, emit missing `WindowEvent::ScaleFactorChanged` when the only monitor gets reconnected.
- On X11, if RANDR based scale factor is higher than 20 reset it to 1
- On Wayland, add an enabled-by-default feature called `wayland-dlopen` so users can opt out of using `dlopen` to load system libraries.
- **Breaking:** On Android, bump `ndk` and `ndk-glue` to 0.4.
# 0.25.0 (2021-05-15)

View file

@ -36,9 +36,9 @@ image = "0.23.12"
simple_logger = "1.9"
[target.'cfg(target_os = "android")'.dependencies]
ndk = "0.3"
ndk = "0.4"
ndk-sys = "0.2.0"
ndk-glue = "0.3"
ndk-glue = "0.4"
[target.'cfg(any(target_os = "ios", target_os = "macos"))'.dependencies]
objc = "0.2.7"

View file

@ -100,6 +100,7 @@ The `ndk_glue` version needs to match the version used by `winit`. Otherwise, th
| :---: | :------------------: |
| 0.24 | `ndk_glue = "0.2.0"` |
| 0.25 | `ndk_glue = "0.3.0"` |
| 0.26 | `ndk_glue = "0.4.0"` |
Running on an Android device needs a dynamic system library, add this to Cargo.toml: