mikehardy / react-native-update-apk

Update apk from non-play store servers, and update ios from app store in React Native.
MIT License
195 stars 57 forks source link

Implement ability to download architecture-specific packages #7

Open mikehardy opened 5 years ago

mikehardy commented 5 years ago

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

bshubham80 commented 4 years ago

I think this should be implemented it will reduce lots of data for the end user.

WNemencha commented 3 years ago

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 ^^

mikehardy commented 3 years ago

Nice workaround!