aboutsummaryrefslogtreecommitdiffstats
path: root/make/resources
diff options
context:
space:
mode:
authorRami Santina <[email protected]>2011-09-30 17:53:52 +0300
committerRami Santina <[email protected]>2011-09-30 17:53:52 +0300
commit14ec84659f2ef5ba6c74601360adfff0558fc6f0 (patch)
treef1f638257f468e1edf811d78f04cab06766179f4 /make/resources
parent685d46d409ad9e0c4905a5b22bfba525456eedea (diff)
Allow Android activity launch from another app.
android:exported tag allows activity to be launched from another applications and other user id. launch mode standard allows multiple instances.
Diffstat (limited to 'make/resources')
-rw-r--r--make/resources/android/AndroidManifest-launcher.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/make/resources/android/AndroidManifest-launcher.xml b/make/resources/android/AndroidManifest-launcher.xml
index cbd2063a6..d32695fb6 100644
--- a/make/resources/android/AndroidManifest-launcher.xml
+++ b/make/resources/android/AndroidManifest-launcher.xml
@@ -15,10 +15,11 @@
>
<activity android:name="com.jogamp.android.launcher.NEWTLauncherGearsES1Activity"
android:finishOnTaskLaunch="true"
- android:launchMode="singleTop"
+ android:launchMode="standard"
android:configChanges="keyboardHidden|orientation"
android:label="@string/activity_gearses1_name"
android:description="@string/activity_gearses1_descr"
+ android:exported="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -27,10 +28,11 @@
</activity>
<activity android:name="com.jogamp.android.launcher.NEWTLauncherGearsES2Activity"
android:finishOnTaskLaunch="true"
- android:launchMode="singleTop"
+ android:launchMode="standard"
android:configChanges="keyboardHidden|orientation"
android:label="@string/activity_gearses2_name"
android:description="@string/activity_gearses2_descr"
+ android:exported="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -39,10 +41,11 @@
</activity>
<activity android:name="com.jogamp.android.launcher.NEWTLauncherGraphUIActivity"
android:finishOnTaskLaunch="true"
- android:launchMode="singleTop"
+ android:launchMode="standard"
android:configChanges="keyboardHidden|orientation"
android:label="@string/activity_graphui_name"
android:description="@string/activity_graphui_descr"
+ android:exported="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -51,10 +54,11 @@
</activity>
<activity android:name="com.jogamp.android.launcher.NEWTLauncherElektronActivity"
android:finishOnTaskLaunch="true"
- android:launchMode="singleTop"
+ android:launchMode="standard"
android:configChanges="keyboardHidden|orientation"
android:label="@string/activity_elektro_name"
android:description="@string/activity_elektro_descr"
+ android:exported="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />