Earl Austin Avila Zuniga

Results 7 comments of Earl Austin Avila Zuniga

I solved this by modifying obfuscatingTransformer.js in node_modules\react-native-obfuscating-transformer\dist\ change ``` fs.writeFileSync(path.join(emitDir, filename), code); ``` to ``` fs.writeFileSync(path.join(emitDir, filename), obfuscateCode_1.obfuscateCode(code, obfuscatorOptions)); ``` it seems the author forgot to modify this one.

> > > > I solved this by modifying obfuscatingTransformer.js in node_modules\react-native-obfuscating-transformer\dist\ > > change > > ``` > > fs.writeFileSync(path.join(emitDir, filename), code); > > ``` > > > >...

Solved: https://github.com/javascript-obfuscator/react-native-obfuscating-transformer/issues/2#issuecomment-595575844

I finally figured out how to make it work after several test. **my react and react native version:** ``` "react": "16.9.0", "react-native": "0.61.5", ``` **install other dependencies needed:** ``` npm...

happens to me when I set the obfuscatorOptions to: ``` debugProtection: true, debugProtectionInterval: true, ```

> @Fedorrychkov , I just had this issue now and fixed it. > > can you make sure you are not wrapping importing for the lib in if-else block? Just...