Fixing error with the tests, backbuttonmultipage wasn't added
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/9233c3a8 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/9233c3a8 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/9233c3a8 Branch: refs/heads/master Commit: 9233c3a89802a13a9a275911e3a46a714d7e67c7 Parents: 5810a96 Author: Joe Bowser <[email protected]> Authored: Wed Nov 14 13:22:58 2012 -0800 Committer: Joe Bowser <[email protected]> Committed: Wed Nov 14 13:22:58 2012 -0800 ---------------------------------------------------------------------- test/AndroidManifest.xml | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/9233c3a8/test/AndroidManifest.xml ---------------------------------------------------------------------- diff --git a/test/AndroidManifest.xml b/test/AndroidManifest.xml index e35f6c6..aee2e04 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=".actions.backbuttonmultipage" > + <intent-filter> + <action android:name="android.intent.action.MAIN" /> + <category android:name="android.intent.category.SAMPLE_CODE" /> + </intent-filter> + </activity> </application> </manifest>
