Fixed
Status Update
Comments
bo...@google.com <bo...@google.com> #2
Fixed in
Added itemColors
function to NavigationSuiteDefaults so developers can do like so:
val itemColors = NavigationSuiteDefaults.itemColors(/* change only what they want to change*/)
NavigationSuiteScaffold(
navigationSuiteItems = {
item(
...
colors = itemColors
)
},
){...}
gy...@google.com <gy...@google.com> #3
The following release(s) address this bug.It is possible this bug has only been partially addressed:
androidx.compose.material3:material3-adaptive-navigation-suite:1.0.0-alpha06
androidx.compose.material3:material3-adaptive-navigation-suite-android:1.0.0-alpha06
androidx.compose.material3:material3-adaptive-navigation-suite-desktop:1.0.0-alpha06
gy...@google.com <gy...@google.com>
ap...@google.com <ap...@google.com> #4
اريدها بسعر اقل
ap...@google.com <ap...@google.com> #5
Project: platform/frameworks/support
Branch: androidx-main
commit bc89e5d7c7785b0c4ea4842fe73a1e1324b6ea33
Author: Gyumin Sim <gyumin@google.com>
Date: Mon Sep 27 15:41:38 2021
Remove intent query element from manifest of media
It makes the package visibility filter opted-in by users rather than
automatically by the library.
It partially reverts If2a46bce0cdc78750d08eec66488fe3150610e5b.
Bug: 185314633
Relnote: "The library won't inject the package visibility filter for
`MediaBrowserCompat` anymore. Please specify a `<queries>` element
in your apps manifest when targeting API level 30 or higher."
Test: ./media/version-compat-tests/runtest.sh 4 on API 30
Change-Id: I0a964e51887211650279b9bd1efd79ce4c5bb5c2
M media/media/src/main/java/android/support/v4/media/MediaBrowserCompat.java
M media/media/src/main/AndroidManifest.xml
https://android-review.googlesource.com/1836874
Branch: androidx-main
commit bc89e5d7c7785b0c4ea4842fe73a1e1324b6ea33
Author: Gyumin Sim <gyumin@google.com>
Date: Mon Sep 27 15:41:38 2021
Remove intent query element from manifest of media
It makes the package visibility filter opted-in by users rather than
automatically by the library.
It partially reverts If2a46bce0cdc78750d08eec66488fe3150610e5b.
Bug: 185314633
Relnote: "The library won't inject the package visibility filter for
`MediaBrowserCompat` anymore. Please specify a `<queries>` element
in your apps manifest when targeting API level 30 or higher."
Test: ./media/version-compat-tests/runtest.sh 4 on API 30
Change-Id: I0a964e51887211650279b9bd1efd79ce4c5bb5c2
M media/media/src/main/java/android/support/v4/media/MediaBrowserCompat.java
M media/media/src/main/AndroidManifest.xml
gy...@google.com <gy...@google.com> #6
I'm expecting the fix for androidx.media will be released with the version 1.4.3 targeting October 14th.
Description
Component used: androidx.media
Version used: 1.3.0
Devices/Android versions reproduced on: N/A
After updating androidx.media:media from 1.2.1 to 1.3.0, we see this additional entry in our generated app manifest:
We use this library to be able to intercept the media button. We don't need to query activities that support the MediaBrowserService intent.
I know I can remove this by adding the following to my app's manifest, but it would be great if this library didn't automatically add this to the manifest.
Thanks!