0

I have to develop an app which having 200MB sqlite database in zipped form. my app will support 2.2 and above and below is my requirement.

  1. Offline is an option and is initiated after the app is downloaded from app store
  2. Offline database can be deleted from the device, independently of uninstalling the app
  3. User can choose where they want to save database (SD card or phone memory)

what is your thoughts ???

Suggestions are welcome.. :)

Thanks in advance

Zahid Naqvi
  • 536
  • 1
  • 5
  • 18
  • on iPhone, you have a 50MB max for sqlite (see [http://stackoverflow.com/questions/1752830/how-much-can-sqlite-store-on-the-iphone](http://stackoverflow.com/questions/1752830/how-much-can-sqlite-store-on-the-iphone)). – frequent May 09 '13 at 09:12
  • What is the question here? – Raghav Sood May 09 '13 at 09:25
  • i need to implement it in android and as you know that apk size is max 50 MB so how i can use 200 MB sqlite db in my app. – Zahid Naqvi May 09 '13 at 09:27

1 Answers1

2

You will have to look at using an expansion APK. These can be up to 2GB in size.

Graham Borland
  • 60,055
  • 21
  • 138
  • 179