Marco Postigo Perez
Marco Postigo Perez
Thank you for the quick response. The support team assumed that this should be the root cause. I will investigate further and try to get back to the support team...
Unfortunately not. You will have to include it manually if you want to use it. I guess with our next release we will drop this dependency as well and will...
It doesn't seem that we're lucky here... I had to update my app and it was broken again with new RN verision (0.64). Already fixed that and will add a...
Hi, we had to exclude index.js from transforming by adding it to transformer.js: ``` const filter = filename => { return filename.startsWith("app") // all our sources that should be transformed...
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): https://developer.android.com/studio/build/shrink-code
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...
hi, since the maintainer is not maintainig this library anymore and is not releasing it so you're getting the current version via npm (see https://github.com/javascript-obfuscator/react-native-obfuscating-transformer/issues/27) you have to checkout the...
javascript-obfuscator was updated to 2.6.0 about 6 month ago (see https://github.com/javascript-obfuscator/react-native-obfuscating-transformer/pull/37). Since the maintainer of this library is not maintainig this library anymore you need to checkout yourself and build...
Are there any news on this? We're getting the error as well but only on few devices. Can't reproduce this yet but we're using react-native-image-resizer as input for cropping as...