user2134555
user2134555

Reputation:

Running HTML5 code in android app without internet connectivity?

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?

Upvotes: 0

Views: 2038

Answers (1)

James
James

Reputation: 3275

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.

Upvotes: 1

Related Questions