summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-05-04 04:22:58 +0200
committerSven Gothel <[email protected]>2012-05-04 04:22:58 +0200
commit27abf0860336b4a02898740b6dc55fe463c0c8d8 (patch)
tree5d7deaef7fb839843b04191db804b09aa78b5929 /make
parent4b70739956713423137a0918e834f8ed1f42fd44 (diff)
Android Launcher: Add dummy version activity (recognized by market), remove permissions: inet and write-sd
Diffstat (limited to 'make')
-rw-r--r--make/resources/android/AndroidManifest-Launcher.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/make/resources/android/AndroidManifest-Launcher.xml b/make/resources/android/AndroidManifest-Launcher.xml
index c11a38f..3aaa0f3 100644
--- a/make/resources/android/AndroidManifest-Launcher.xml
+++ b/make/resources/android/AndroidManifest-Launcher.xml
@@ -3,8 +3,8 @@
sharedUserId="com.jogamp.Community"
package="jogamp.android.launcher">
- <uses-permission android:name="android.permission.INTERNET" /> <!-- required for NV's perfhud -->
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- required for Android trace -->
+ <!--uses-permission android:name="android.permission.INTERNET" /--> <!-- required for NV's perfhud -->
+ <!--uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /--> <!-- required for Android trace -->
<uses-sdk android:minSdkVersion="9" />
@@ -13,6 +13,18 @@
android:description="@string/app_launcher_descr"
android:persistent="false"
>
+ <activity android:name="jogamp.android.launcher.LauncherVersionActivity"
+ android:finishOnTaskLaunch="true"
+ android:launchMode="singleTop"
+ android:label="@string/activity_l_name"
+ android:description="@string/activity_l_descr"
+ >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+
<activity android:name="jogamp.android.launcher.ActivityLauncher"
android:finishOnTaskLaunch="false"
android:launchMode="standard"