-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiapp-snippet.xml
18 lines (18 loc) · 1.08 KB
/
tiapp-snippet.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="1" android:versionName="1.0">
<application android:label="Collectiv" android:theme="@style/Theme.Titanium">
<activity android:label="Collectiv" android:name=".CollectivActivity" url="ApplicationLoader.js" android:launchMode="singleTask" android:alwaysRetainTaskState="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<data android:scheme="collectiv"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>
</android>