-
Notifications
You must be signed in to change notification settings - Fork 100
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
App gets close immediately after release, but without this package works well #25
Comments
Hi, we had to exclude index.js from transforming by adding it to transformer.js:
Furthermore we've had to add these rules for proguard: https://github.com/facebook/react-native/blob/master/ReactAndroid/proguard-rules.pro Hope this helps. Best regards, |
Thank you, could you please let me know that what is difference between progaur and this package ? |
Proguard is Androids mechanism to obfuscate Java-Files. It looks that it isn't used anymore since Android Gradle Plugin 3.4.0 but it's config files are still used (backwards compatible): |
Another tip: use the config parameter "enableInDevelopment" (transformer.js) during development so that such errors are revealed before releasing your app. You can disable it after successful testing afterwards to speed things up again in development mode. |
this package will not affect on performance ? |
No description provided.
The text was updated successfully, but these errors were encountered: