react-native-update-apk
react-native-update-apk copied to clipboard
Implement ability to download architecture-specific packages
The system should be able to detect what architecture it is running on (x86, x86-64, armv7 etc etc) and if an architecture-specific package exists, download it in preference to the generic package
I think this should be implemented it will reduce lots of data for the end user.
On my side, I've done it by passing the supportedAbi from react-native-device-info as a querystring in the update url and then returning the correct URL based on that query param ^^
Nice workaround!