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
ndk-build,cargo-apk: Rename intent_filters back to intent_filter (#305)
We commonly name vectors of items with their singular form so that they
read nicer in TOML and XML (i.e. `[[intent_filter]]` adds a single entry
to that list, and gets serialized as a single `<intent-filter>` XML
element) and this matches Android's `intent-filter` naming too.
This change in a6f3e13 ("ndk-build: Move default serialization of `MAIN`
intent filter to `cargo-apk` (#241)") was made purely with `Vec` in
mind, but breaks existing manifest parsing nor was anticipated to be a
breaking change in this area as the README still carries `intent_filter`
instead of `intent_filters` in its `Cargo.toml` metadata reference.
Copy file name to clipboardexpand all lines: cargo-apk/CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
# Unreleased
2
2
3
+
# 0.9.3 (2022-07-05)
4
+
3
5
- Allow configuration of alternate debug keystore location; require keystore location for release builds. ([#299](https://github.com/rust-windowing/android-ndk-rs/pull/299))
6
+
-**Breaking:** Rename `Activity::intent_filters` back to `Activity::intent_filter`. ([#305](https://github.com/rust-windowing/android-ndk-rs/pull/305))
Copy file name to clipboardexpand all lines: ndk-build/CHANGELOG.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,10 @@
1
1
# Unreleased
2
2
3
-
- Allow NDK r23 `-lgcc` workaround to work for target directories containing spaces. ([#298](https://github.com/rust-windowing/android-ndk-rs/pull/298))
- Invoke `clang` directly instead of through the NDK's wrapper scripts. ([#306](https://github.com/rust-windowing/android-ndk-rs/pull/306))
7
+
-**Breaking:** Rename `Activity::intent_filters` back to `Activity::intent_filter`. ([#305](https://github.com/rust-windowing/android-ndk-rs/pull/305))
0 commit comments