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-amazon-fireos/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/commit/0f76cc40 Tree: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/tree/0f76cc40 Diff: http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/diff/0f76cc40 Branch: refs/heads/master Commit: 0f76cc4048b83a5906d75837fae53a665f1ef875 Parents: 5037bdc Author: Joe Bowser <[email protected]> Authored: Thu Aug 14 14:30:31 2014 -0700 Committer: Archana Naik <[email protected]> Committed: Mon Aug 18 12:35:01 2014 -0700 ---------------------------------------------------------------------- test/AndroidManifest.xml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-amazon-fireos/blob/0f76cc40/test/AndroidManifest.xml ---------------------------------------------------------------------- diff --git a/test/AndroidManifest.xml b/test/AndroidManifest.xml index b675ca4..bab4566 100755 --- a/test/AndroidManifest.xml +++ b/test/AndroidManifest.xml @@ -256,7 +256,8 @@ <category android:name="android.intent.category.SAMPLE_CODE" /> </intent-filter> </activity> - <!-- This is required for the Tests to work with AmazonWebView --> + + <!-- This is required for the Tests to work with AmazonWebView --> <amazon:enable-feature android:name="com.amazon.webview" amazon:required="false" /> @@ -300,4 +301,15 @@ android:permission="org.chromium.content_shell.permission.SANDBOX" android:process=":sandboxed_process5" /> </application> -</manifest> + <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>
