How to reduce the size of an expo/react-native app on Android

后端 未结 9 1089
渐次进展
渐次进展 2020-11-30 20:12

I am developing a small dictionary app by using react native with expo.

As I am compiling to Apk file. The size goes up to 30mb and after having installed on a devi

9条回答
  •  一个人的身影
    2020-11-30 21:11

    For android APK bundle using expo, you can use the following command:

    expo build:android -t app-bundle
    

    The size will be much smaller once you upload it to the play store. This is relevant for React Native SDK 32 and earlier.

提交回复
热议问题