You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package react-native-network-info is used only in IOS app as can be seen in below code: (for android the package react-native-wifi-reborn is used instead)
but it's included in the android app as part of the build process.
fix:
use platform specific imports so that not needed packages won't be included in the resulted APK/IPA. (and won't be installed in the build process as well)
The text was updated successfully, but these errors were encountered:
The package
react-native-network-info
is used only in IOS app as can be seen in below code: (for android the packagereact-native-wifi-reborn
is used instead)but it's included in the android app as part of the build process.
ios path:
hamagen-react-native/src/services/WifiService.ts
Line 2 in 0afc8ca
hamagen-react-native/src/services/WifiService.ts
Lines 13 to 14 in 0afc8ca
android path:
hamagen-react-native/src/services/WifiService.ts
Line 1 in 0afc8ca
hamagen-react-native/src/services/WifiService.ts
Lines 22 to 23 in 0afc8ca
fix:
use platform specific imports so that not needed packages won't be included in the resulted APK/IPA. (and won't be installed in the build process as well)
The text was updated successfully, but these errors were encountered: