You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/08/19 18:03:08 UTC

[02/19] android commit: Change in test's AndroidManifest.xml needed for the test to run properly. Forgot the manifest.

Change in test's AndroidManifest.xml needed for the test to run properly. Forgot the manifest.


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

Branch: refs/heads/4.0.x
Commit: 50ea1622518f4d8a4c90db52603576fcf7f24236
Parents: 9c23980
Author: Joe Bowser <bo...@apache.org>
Authored: Thu Aug 14 14:30:31 2014 -0700
Committer: Joe Bowser <bo...@apache.org>
Committed: Thu Aug 14 14:30:31 2014 -0700

----------------------------------------------------------------------
 test/AndroidManifest.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/50ea1622/test/AndroidManifest.xml
----------------------------------------------------------------------
diff --git a/test/AndroidManifest.xml b/test/AndroidManifest.xml
index 6dec1ae..e058a42 100755
--- a/test/AndroidManifest.xml
+++ b/test/AndroidManifest.xml
@@ -255,5 +255,15 @@
                 <category android:name="android.intent.category.SAMPLE_CODE" />
             </intent-filter>
         </activity>
+           <activity
+            android:windowSoftInputMode="adjustPan"
+            android:label="@string/app_name" 
+            android:configChanges="orientation|keyboardHidden"
+            android:name="org.apache.cordova.test.SabotagedActivity" >
+            <intent-filter>
+                <action android:name="android.intent.action.MAIN" />
+                <category android:name="android.intent.category.SAMPLE_CODE" />
+            </intent-filter>
+        </activity>
     </application>
 </manifest>