-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
After the last update of Nightly version it completely stopped working. #38027
Comments
Same here, I am using Pixel 8 with Graphene OS, here the log: type: crash org.chromium.base.JniAndroid$UncaughtExceptionException: Native stack trace:
Caused by: java.lang.SecurityException: com.brave.browser_nightly: One of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED should be specified when a receiver isn't being registered exclusively for system broadcasts Some Copilot suggestions: The crash report you provided indicates that the crash occurred in the The key part of the error message is: java.lang.SecurityException: com.brave.browser_nightly: One of RECEIVER_EXPORTED or RECEIVER_NOT_EXPORTED should be specified when a receiver isn't being registered exclusively for system broadcasts This exception is thrown when an application tries to register a broadcast receiver in its manifest file without specifying whether the receiver is exported (can be called by other apps) or not exported (cannot be called by other apps). The second part of the crash report indicates that the crash was caused by a The key part of the error message is: android.os.RemoteException: Remote stack trace:
at com.android.server.am.ActivityManagerService.registerReceiverWithFeature(ActivityManagerService.java:14425)
at android.app.IActivityManager$Stub.onTransact(IActivityManager.java:2623)
at com.android.server.am.ActivityManagerService.onTransact(ActivityManagerService.java:2802)
at android.os.Binder.execTransactInternal(Binder.java:1525)
at android.os.Binder.execTransact(Binder.java:1464) This indicates that the To debug this issue, you would need to look into the specific code where the Please note that this is a high-level analysis based on the information provided in the crash report. For a more detailed analysis, you may need to look into the specific code where the exception is thrown. It's also recommended to test the application thoroughly after making any changes to ensure that the issue is resolved and no new issues are introduced. If the problem persists, consider reaching out to the Brave browser's support or developer community for more specific guidance. |
After the last update it started to work again. Thanks a lot ! |
Closing as this should be solved. Can you confirm also, @Wyckoffan? |
Yes, I confirm as well the issue being solved with the latest update. |
After the last update of Brave Nightly on Android it completely stopped working. Every time I click on Brave icon the browser appears and then disappears after 2 seconds. I looked through the logs but could not see anything relevant. Please check it out.
The text was updated successfully, but these errors were encountered: