Created
August 24, 2011 19:42
-
-
Save appcdr/1168996 to your computer and use it in GitHub Desktop.
Appcelerator: Android Intent Filter AndroidManifest.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- TI_APPLICATION --> | |
<activity android:name=".IntentFilterTestActivity" | |
android:label="Intent Filter Test" android:theme="@style/Theme.Titanium" | |
android:configChanges="keyboardHidden|orientation"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> | |
<intent-filter> | |
<data android:scheme="http" android:host="www.appcelerator.com"/> | |
<category android:name="android.intent.category.DEFAULT" /> | |
<category android:name="android.intent.category.BROWSABLE" /> | |
<action android:name="android.intent.action.VIEW" /> | |
</intent-filter> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment