I have a fairly complex site (titansoftime.com), which is powered by WebGL and WebSockets. Before I embark on learning how to create even simple android/apple apps, I would like to know if this is possible.
Can I add a functional "link" to the apple/android app stores?
This code is from the accepted answer from Android app that just points to a URL.
Intent browserIntent = new Intent("android.intent.action.VIEW", Uri.parse("http://www.google.com")); startActivity(browserIntent);
Is this a viable solution? All I really want is a way to list my game in the app store. I know users can "Add to Home" from within the browser, but it seems only a handful of people are aware of this.