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

This commit is contained in:
Joe Bowser 2014-08-14 14:30:31 -07:00
parent 9c239804d3
commit 50ea162251

View File

@ -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>