-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android 14 compatibility #7751
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
It's still relevant |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
I am facing same issue how I can fix this ? |
#7801 merged, closing |
What happened?
We are exploring Android 14 and possibility to target it as soon as possible. In Android 14, Runtime-registered broadcasts receivers must specify export behavior.
There's one place in rn-navigation library, where a broadcast is registered without specifying the export behaviour. You can find it here. The way to fix this is bumping androidx.core dependency to be able to use the latest APIs for
ContextCompat
class.On the other hand, we've noticed, that this class
JsDevReloadHandler
is initialized on app start, even for release builds. I've not found any checks for debug/release in the code. Isn't this supposed to run only on debug version of the app?What was the expected behaviour?
JsDevReloadHandler
shouldn't be initialized on release builds.Was it tested on latest react-native-navigation?
Help us reproduce this issue!
No response
In what environment did this happen?
React Native Navigation version: 7.32.1
React Native version: 0.71.7
Has Fabric (React Native's new rendering system) enabled: no
Node version: 16.14.2
Device model: Pixel 6 Pro, android 14 beta
Android version: 14
The text was updated successfully, but these errors were encountered: