Browse Source

Bumped android min SDK level to 14 and updated the version on samples to 2.0

seanpaultaylor 12 years ago
parent
commit
7980a2afa7

+ 1 - 1
gameplay/android/AndroidManifest.xml

@@ -4,7 +4,7 @@
     android:versionCode="1"
     android:versionName="2.0" >
 
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 
     <application
         android:icon="@drawable/ic_launcher"

+ 2 - 2
samples/browser/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_browser"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the app was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 2 - 2
samples/character/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_character"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the game was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 2 - 2
samples/lua/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_lua"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the app was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 2 - 2
samples/mesh/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_mesh"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where MeshGame was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 2 - 2
samples/particles/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_particles"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the app was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 2 - 2
samples/racer/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_racer"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the app was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 2 - 2
samples/spaceship/android/AndroidManifest.xml

@@ -2,12 +2,12 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
         package="org.gameplay3d.sample_spaceship"
         android:versionCode="1"
-        android:versionName="1.0">
+        android:versionName="2.0">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the game was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">

+ 1 - 1
template/android/template.AndroidManifest.xml

@@ -7,7 +7,7 @@
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
         
     <!-- This is the platform API where the app was introduced. -->
-    <uses-sdk android:minSdkVersion="9" />
+    <uses-sdk android:minSdkVersion="14" />
 	<uses-feature android:glEsVersion="0x00020000"/>
 
     <application android:icon="@drawable/icon" android:label="@string/app_name" android:hasCode="true">