Reputation: 2609
I'd like to add a web-based application to the Android market. Is this possible? Tools like JQueryMobile and JTouch are great, but it's easy to miss user acquisition opportunities if you don't get into the marketplace.
You see examples of this from Google - "Tasks", "Latitude" for example. But I haven't found a resource explaining how to do this.
Upvotes: 0
Views: 1555
Reputation: 11592
why not create an app that simply launches the web page as an intent?
EDIT:
I just found this as well:
It seems to do what you need.
Upvotes: 2
Reputation: 1221
Create an app that contains a button that ends up linking to your site and having the app create a browser instance. Look at "Adobe Flash Showcase" app. There are a few apps that are in the store that are just "bookmarks" to their site. As far as I know though couldn't you create a WebView instance and have it use that inside of the app.
http://developer.android.com/reference/android/webkit/WebView.html
Upvotes: 0