Skip to content

Instantly share code, notes, and snippets.

@joshualambert
Last active August 29, 2015 14:01
Show Gist options
  • Save joshualambert/243355ce77d8e1f7324d to your computer and use it in GitHub Desktop.
Save joshualambert/243355ce77d8e1f7324d to your computer and use it in GitHub Desktop.
<activity android:name=".MyAppActivity" android:label="@string/app_name" android:theme="@style/Theme.Titanium" android:configChanges="keyboardHidden|orientation" android:alwaysRetainTaskState="true" android:launchMode="singleInstance">
<intent-filter>
<data android:scheme="myapp" android:host="app"/>
<action android:name="android.intent.action.MAIN"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
</activity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment