diff options
author | Sven Gothel <[email protected]> | 2013-10-11 04:18:36 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-10-11 04:18:36 +0200 |
commit | 068b822a3bf978124428d1642cfefb078c9e4a2b (patch) | |
tree | e881822129ff0e388cc46db69ab0112876d362e0 | |
parent | bb0832a14d05fe5258119f302c2073d6ce71c854 (diff) |
Android uses-sdk: Add android:targetSdkVersion="14" (to show up for tablets)
-rw-r--r-- | make/resources/android/AndroidManifest-Launcher.xml | 2 | ||||
-rw-r--r-- | make/resources/android/AndroidManifest-Runtime.xml | 2 | ||||
-rw-r--r-- | make/resources/android/AndroidManifest-Test.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/make/resources/android/AndroidManifest-Launcher.xml b/make/resources/android/AndroidManifest-Launcher.xml index fdac860..b554267 100644 --- a/make/resources/android/AndroidManifest-Launcher.xml +++ b/make/resources/android/AndroidManifest-Launcher.xml @@ -11,7 +11,7 @@ <!-- uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" / --> <!-- required for Android-Trace --> <uses-permission android:name="android.permission.CAMERA" /> - <uses-sdk android:minSdkVersion="9" /> + <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/> <application android:icon="@drawable/icon" android:label="@string/app_launcher_name" diff --git a/make/resources/android/AndroidManifest-Runtime.xml b/make/resources/android/AndroidManifest-Runtime.xml index dc306b9..7c9d867 100644 --- a/make/resources/android/AndroidManifest-Runtime.xml +++ b/make/resources/android/AndroidManifest-Runtime.xml @@ -6,7 +6,7 @@ <uses-feature android:name="android.hardware.touchscreen" android:required="false" /> <!-- uses-feature android:name="android.hardware.camera" android:required="false" / --> <!-- not yet --> - <uses-sdk android:minSdkVersion="9" /> + <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/> <application android:icon="@drawable/icon" android:label="@string/app_runtime_name" diff --git a/make/resources/android/AndroidManifest-Test.xml b/make/resources/android/AndroidManifest-Test.xml index 50750ae..41bee09 100644 --- a/make/resources/android/AndroidManifest-Test.xml +++ b/make/resources/android/AndroidManifest-Test.xml @@ -9,7 +9,7 @@ <uses-library android:name="com.jogamp.common" android:required="true" /> - <uses-sdk android:minSdkVersion="9" /> + <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="14"/> <application android:icon="@drawable/icon" android:label="@string/app_test_name" |