Dário
Dário

Reputation: 194

How to reduce app size using Expo - React Native

Warning: I have a lot of images and sqlite database connection on this app!

Upvotes: 0

Views: 256

Answers (1)

Mayur Kukadiya
Mayur Kukadiya

Reputation: 2747

You can Do following things for reduce app size :

  1. Remove images from app and store it on server and load it from there if it will lazy to show when screen is open
  2. Use icon instead of images for icons
  3. Remove unnecessary packages that have added for single purpose only.

More information you can find on this link : how to reduce RN-app size

Upvotes: 1

Related Questions