trustee-wallet/trusteeWallet

Remove android.enableJetifier line from gradle.properties & npx jetifier calls

emanuelb opened this issue · 2 comments

android.enableJetifier=true

android.enableJetifier=true

see this guide for the steps to ensure it's safe to remove this lines (check that all deps are already fully migrated to AndroidX)
https://medium.com/dipien/say-bye-bye-to-android-jetifier-a7e0d388f5d6

There also calls to npx jetifier at:

"postinstall": "npx jetifier && rm -f shim.js && ./node_modules/.bin/rn-nodeify --hack --install && patch-package",


npx jetifier

Both can be removed if project+deps fully migrated to AndroidX, also from https://www.npmjs.com/package/jetifier

Note that jetifier is included and ran automatically with react-native-community/cli for React Native versions 0.60 and above, so you do not need to install and run jetifier manually.

Checking this with developers.

Thank you.

Unfortunately we can't remove Jetifier for now. We will get back to this issue later.