You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2012/04/10 23:39:21 UTC

[10/16] android commit: Fixing the template, since this doesn't have to be unit tested. :)

Fixing the template, since this doesn't have to be unit tested. :)


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/commit/b532cf85
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/b532cf85
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/b532cf85

Branch: refs/heads/CordovaWebView
Commit: b532cf854522b74d3aeab84f7695b616ad8ae619
Parents: ecebcba
Author: Joe Bowser <bo...@apache.org>
Authored: Mon Apr 9 13:43:36 2012 -0700
Committer: Joe Bowser <bo...@apache.org>
Committed: Mon Apr 9 13:43:36 2012 -0700

----------------------------------------------------------------------
 .../cordova/templates/project/AndroidManifest.xml  |   32 +++++++--------
 1 files changed, 15 insertions(+), 17 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/b532cf85/bin/templates/project/cordova/templates/project/AndroidManifest.xml
----------------------------------------------------------------------
diff --git a/bin/templates/project/cordova/templates/project/AndroidManifest.xml b/bin/templates/project/cordova/templates/project/AndroidManifest.xml
index bae310f..9d02e59 100644
--- a/bin/templates/project/cordova/templates/project/AndroidManifest.xml
+++ b/bin/templates/project/cordova/templates/project/AndroidManifest.xml
@@ -2,13 +2,13 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
       package="__PACKAGE__" android:versionName="1.1" android:versionCode="5">
     <supports-screens
-    	android:largeScreens="true"
-    	android:normalScreens="true"
-    	android:smallScreens="true"
-    	android:xlargeScreens="true"
-    	android:resizeable="true"
-    	android:anyDensity="true"
-    	/>
+        android:largeScreens="true"
+        android:normalScreens="true"
+        android:smallScreens="true"
+        android:xlargeScreens="true"
+        android:resizeable="true"
+        android:anyDensity="true"
+        />
 
     <uses-permission android:name="android.permission.CAMERA" />
     <uses-permission android:name="android.permission.VIBRATE" />
@@ -27,19 +27,17 @@
     <uses-permission android:name="android.permission.GET_ACCOUNTS" />
     <uses-permission android:name="android.permission.BROADCAST_STICKY" />
 
-    <uses-feature android:name="android.hardware.camera" />
-    <uses-feature android:name="android.hardware.camera.autofocus" />
 
     <application android:icon="@drawable/icon" android:label="@string/app_name"
-    	android:debuggable="true">
-		<activity android:name="__ACTIVITY__" android:label="@string/app_name" 
-				  android:configChanges="orientation|keyboardHidden">
-			<intent-filter>
-				<action android:name="android.intent.action.MAIN" />
-				<category android:name="android.intent.category.LAUNCHER" />
-			</intent-filter>
+        android:debuggable="true">
+        <activity android:name="__ACTIVITY__" android:label="@string/app_name" 
+                  android:configChanges="orientation|keyboardHidden">
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.LAUNCHER" />
+            </intent-filter>
         </activity>
     </application>
 
-	<uses-sdk android:minSdkVersion="5" />
+    <uses-sdk android:minSdkVersion="5" />
 </manifest>