0

Is it possible to have HTML5 files stored inside the .apk file of an android app and run the files on the android app without requiring internet connectivity?

1 Answer 1

1

Yes. If your a native Android programmer look at the WebView. http://developer.android.com/reference/android/webkit/WebView.html

If your not, you could look at things like http://cordova.apache.org/ and http://www.appcelerator.com/platform/titanium-sdk/ and others. But honestly I've never meet a dev who has a good thing to say about these for any kind of complex app.

3
  • The developer.android.com page says that it will require internet connection and permission to connect to internet.
    – user2134555
    Commented Aug 5, 2013 at 11:18
  • What do the developers say?
    – user2134555
    Commented Aug 5, 2013 at 11:19
  • you need internet and permissions only if you accessing pages on the web I.E. www.google.com, if your only going to be using files that are stored locally you dont need to include the permission Commented Sep 3, 2013 at 12:05

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.