Skip to content

Instantly share code, notes, and snippets.

@venkatesh05
Created June 6, 2012 05:18
Show Gist options
  • Save venkatesh05/2880055 to your computer and use it in GitHub Desktop.
Save venkatesh05/2880055 to your computer and use it in GitHub Desktop.
Custom Url schema android
<activity android:name=".SampleActivity"
android:label="sample" android:theme="@style/Theme.Titanium"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="mobileapp" />
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment