-
Notifications
You must be signed in to change notification settings - Fork 5
/
tiapp.xml
141 lines (141 loc) · 6.88 KB
/
tiapp.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="UTF-8"?>
<ti:app xmlns:ti="http://ti.appcelerator.org">
<id>nipa.titanium.brandnew</id>
<name>brandnew</name>
<version>1.0</version>
<publisher>DongwooGim</publisher>
<url>https://github.com/gimdongwoo</url>
<description>not specified</description>
<copyright>2015 by Dongwoo Gim, Inc.</copyright>
<icon>appicon.png</icon>
<fullscreen>false</fullscreen>
<navbar-hidden>false</navbar-hidden>
<analytics>true</analytics>
<guid>4cd69520-7822-49da-9000-f9d8c942a2ae</guid>
<property name="ti.ui.defaultunit" type="string">dp</property>
<ios>
<min-ios-ver>8.0</min-ios-ver>
<use-app-thinning>true</use-app-thinning>
<plist>
<dict>
<key>UISupportedInterfaceOrientations~iphone</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIRequiresPersistentWiFi</key>
<false/>
<key>UIPrerenderedIcon</key>
<false/>
<key>UIStatusBarHidden</key>
<false/>
<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleDefault</string>
<key>CFBundleDevelopmentRegion</key>
<array>
<string>ko</string>
</array>
<key>CFBundleLocalizations</key>
<array>
<string>ko</string>
</array>
<key>UIBackgroundModes</key>
<array>
<string>fetch</string>
</array>
<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
</array>
</dict>
</plist>
</ios>
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="100" android:versionName="1.0.0">
<!-- Need to specify at least API level 11 for Titanium SDK 3.2.x and prior -->
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
<application android:theme="@style/Theme.CustomActionBar">
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:name=".TitaniumboilerplateActivity"
android:screenOrientation="portrait" android:theme="@style/Theme.Titanium">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:name="org.appcelerator.titanium.TiActivity" android:screenOrientation="portrait"/>
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:name="org.appcelerator.titanium.TiTranslucentActivity"
android:screenOrientation="portrait" android:theme="@style/Theme.AppCompat.Translucent"/>
<activity android:configChanges="screenSize"
android:name="ti.modules.titanium.ui.android.TiPreferencesActivity" android:screenOrientation="portrait"/>
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:name="ti.modules.titanium.media.TiCameraActivity"
android:screenOrientation="portrait" android:theme="@style/Theme.AppCompat.Translucent.NoTitleBar.Fullscreen"/>
</application>
<!-- Camera Permissions -->
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
</manifest>
</android>
<mobileweb>
<precache/>
<splash>
<enabled>true</enabled>
<inline-css-images>true</inline-css-images>
</splash>
<theme>default</theme>
</mobileweb>
<modules>
<module platform="commonjs">TiParseJS</module>
<module platform="android">eu.rebelcorp.parse</module>
<module platform="android">fh.imagefactory</module>
<module platform="android">ti.mediapicker</module>
<module platform="android">pw.custom.androidcamera</module>
<module platform="android">com.boxoutthinkers.reqstorageperm</module>
<module platform="android">ti.imagefactory</module>
<module platform="android">ti.android.sms</module>
<module platform="android">com.rkam.swiperefreshlayout</module>
<module platform="android">org.iotashan.titouchimageview</module>
<module platform="android">ti.andinstreferrer</module>
<module platform="iphone">ti.mediapicker</module>
<module platform="iphone">ti.imagefactory</module>
<module platform="iphone">com.omorandi</module>
<module platform="iphone">com.appcelerator.urlSession</module>
</modules>
<deployment-targets>
<target device="android">true</target>
<target device="ipad">false</target>
<target device="iphone">true</target>
<target device="mobileweb">false</target>
<target device="windows">false</target>
</deployment-targets>
<sdk-version>5.5.1.GA</sdk-version>
<plugins>
<plugin version="1.0">ti.alloy</plugin>
</plugins>
<property name="Configuration_File" type="string">app.json</property>
<property name="Parse_ServerUrl" type="string">https://tibn-parse.herokuapp.com/parse</property>
<property name="Parse_AppId" type="string">nOFVUMDS3IRx96Mz9Nem04pw5jkwdXT6</property>
<property name="Parse_RestKey" type="string"/>
<property name="Parse_JsKey" type="string"/>
<property name="ti.android.bug2373.finishfalseroot" type="bool">true</property>
<property name="ti.android.bug2373.skipAlert" type="bool">true</property>
</ti:app>