Closed gagangoku closed 4 years ago
Hi! I am facing the same issue, but in my case when deploying in a Xiaomi device. Have you found any solution so far?
I have found a quick work arround but I think this is not a workful solution.
in initialProps provided by the ActivityDelegate comes a property with key "prpfile"
key: "profile" value: "UserHandle{0}" (toString() output)
if you remove this prop from the bundle the app will start properly.
I'm surprised more people are not facing this issue. I forked React Native to fix it : https://github.com/gagangoku/react-native
I have found a quick work arround but I think this is not a workful solution.
in initialProps provided by the ActivityDelegate comes a property with key "prpfile"
key: "profile" value: "UserHandle{0}" (toString() output)
if you remove this prop from the bundle the app will start properly. @martppa can you please give exact steps for this fix?
this crash reason:
https://github.com/react-native-community/react-native-camera/pull/1835
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions.
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information.
Please provide all the information requested. Issues that do not follow this format are likely to stall.
Description
I'm creating a React Native chat / messenger app. In order to get the intent the app was launched with (say with a share intent), I am overriding the createReactActivityDelegate method in MainActivity.java
However, this is causing the app to crash repeatably with the following exceptions:
and
I can see the following exception in debug mode:
React Native version:
Steps To Reproduce
MainActivity.java:
AndroidManifest.xml
Expected Results
Expectation is for the app to not crash.
Snack, code example, screenshot, or link to a repository:
https://github.com/gagangoku/helo-app-rn/tree/reproduce