-
Notifications
You must be signed in to change notification settings - Fork 2
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
react-native example: update to react-native 0.75.3 boilerplate code #292
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- wrong application name
- Did you run the app natively on the phone? I think due to the new namespace and lack of changes in the javascript binding, we're not able to trigger an error
- We're missing java unhandled exception generator (it was removed)
- we need to be sure source maps are being generated on the android and ios. the xcode solution task doesn't have source map generation script
examples/sdk/reactNative/android/app/src/main/res/values/strings.xml
Outdated
Show resolved
Hide resolved
examples/sdk/reactNative/android/app/src/main/java/com/reactnative/BacktraceDemoPackage.java
Show resolved
Hide resolved
examples/sdk/reactNative/android/app/src/main/java/com/rnbtexample/MainActivity.kt
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,37 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we're adding it - we need to extend the list - example: https://github.com/backtrace-labs/backtrace-cocoa/blob/master/Sources/Resources/PrivacyInfo.xcprivacy
examples/sdk/reactNative/ios/rnbtexampleTests/rnbtexampleTests.m
Outdated
Show resolved
Hide resolved
970c2ec
to
d1e9d5e
Compare
d1e9d5e
to
ec9ade7
Compare
examples/sdk/reactNative/android/app/src/main/java/com/reactnative/ErrorGenerator.java
Outdated
Show resolved
Hide resolved
examples/sdk/reactNative/android/app/src/main/java/com/reactnative/MainApplication.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we want to land this change we need to also fix the problem with crash support on the newest gradle. Please wait on other changes before landing it
This PR updates
react-native
example to[email protected]
.The code was created using
npx @react-native-community/cli@latest init rnbtexample
.