I am in desperate need of help for I can't wrap my head around this. I want to create an Android launcher for Android boxes using HTML. I have a program that compiles HTML files to an APK called Weeb2APK that works well.
The only part I'm missing is how to launch apps.
I don't need to share data between apps but it would be nice if the HTML code could check if the app it's trying to launch is installed else go get it from a website.
So far I have this
<activity
android:name="com.yoku.marumovie.analytics"
android:label="@string/application_name">
<!-- ... -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http"
android:host="flickr.com"
android:pathPrefix="/photos/" />
<data android:scheme="http"
android:host="www.flickr.com"
android:pathPrefix="/photos/" />
</intent-filter>
</activity>
Do I need an activity for every app? How do I call the action from Yes, each app will have its own image. If someone has a sample, this would help tremendously. I find it easer to learn that way.
David