Skip to content

Instantly share code, notes, and snippets.

@joshualambert
Last active August 29, 2015 14:01

Revisions

  1. Joshua Lambert revised this gist May 20, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    <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="reactmobile" android:host="app"/>
    <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"/>
  2. Joshua Lambert created this gist May 20, 2014.
    10 changes: 10 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    <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="reactmobile" 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>