Implement simple activity to show all launchable applications

This commit is contained in:
Simon Fels 2016-12-13 18:42:50 +01:00
commit 9c9eb48bf0
12 changed files with 1106 additions and 2 deletions

View file

@ -6,14 +6,18 @@
<application
android:name="org.anbox.appmgr.MainApplication">
<activity
android:name=".LauncherActivity"
android:launchMode="singleTask">
android:name=".LauncherActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name=".AppViewActivity"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
<service
android:name=".LauncherService"
android:exported="false">