Skip to content

Commit e773f4a

Browse files
committed
tiapp.xml snippet
Appcelerator Titanium - android manifest snippet inside tiapp.xml
1 parent f2e8507 commit e773f4a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tiapp-snippet.xml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<android xmlns:android="http://schemas.android.com/apk/res/android">
2+
<manifest android:versionCode="1" android:versionName="1.0">
3+
<application android:label="Collectiv" android:theme="@style/Theme.Titanium">
4+
<activity android:label="Collectiv" android:name=".CollectivActivity" url="ApplicationLoader.js" android:launchMode="singleTask" android:alwaysRetainTaskState="true">
5+
<intent-filter>
6+
<action android:name="android.intent.action.MAIN"/>
7+
<category android:name="android.intent.category.LAUNCHER"/>
8+
</intent-filter>
9+
<intent-filter>
10+
<data android:scheme="collectiv"/>
11+
<action android:name="android.intent.action.VIEW"/>
12+
<category android:name="android.intent.category.BROWSABLE"/>
13+
<category android:name="android.intent.category.DEFAULT"/>
14+
</intent-filter>
15+
</activity>
16+
</application>
17+
</manifest>
18+
</android>

0 commit comments

Comments
 (0)