-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml~
85 lines (73 loc) · 4.26 KB
/
config.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
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "felippegallo.com.br.smrtfoodweb"
versionCode="10"
version = "1.0.0">
<name>Smartfoodweb</name>
<description>
Smartfoodweb
</description>
<author href="https://felippegallo.com.br" email="[email protected]">
Felippe Gallo
</author>
<icon src="icons/android.png" />
<icon src="icons/iphone57.png" gap:platform="ios" width="57" height="57" />
<icon src="icons/iphone60.png" gap:platform="ios" width="60" height="60" />
<icon src="icons/iphone72.png" gap:platform="ios" width="72" height="72" />
<icon src="icons/iphone76.png" gap:platform="ios" width="76" height="76" />
<icon src="icons/iphone120.png" gap:platform="ios" width="120" height="120" />
<icon src="icons/iphone152.png" gap:platform="ios" width="152" height="152" />
<gap:splash gap:platform="ios" src="icons/splash.png" width="320" height="480" />
<gap:splash gap:platform="ios" src="icons/splash.png" width="640" height="1136" />
<gap:splash src="icons/splash.png"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>
<feature name="http://api.phonegap.com/1.0/device"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<!--<feature name="http://api.phonegap.com/1.0/battery"/>-->
<!--<feature name="http://api.phonegap.com/1.0/contacts"/>-->
<access origin="*" />
<!--IOS Status Bar-->
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true" />
</feature>
<gap:plugin name="com.phonegap.plugin.statusbar" version="1.1.0">
<preference name="StatusBarOverlaysWebView" value="true" />
<preference name="StatusBarBackgroundColor" value="#000000"/>
</gap:plugin>
<preference name="webviewbounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<!--Geolocation-->
<feature name="Geolocation">
<param name="ios-package" value="CDVLocation" />
</feature>
<gap:plugin name="org.apache.cordova.geolocation" />
<!--Camera-->
<gap:plugin name="org.apache.cordova.camera" />
<!--Upload de arquivos -->
<gap:plugin name="org.apache.cordova.file-transfer" />
<!-- Facebook Login -->
<gap:plugin name="com.phonegap.plugins.facebookconnect">
<param name="APP_ID" value="399248013601234" />
<param name="APP_NAME" value="felippegallo.com.br.Smartfoodweb" />
</gap:plugin>
<!--In App Browser-->
<gap:plugin name="org.li8.inappbrowser" version="0.1" />
<!-- Teclado sobrepondo para o android, igual iphone -->
<!--<preference name="android-windowSoftInputMode" value="stateVisible|adjustResize" />-->
<!-- Custom Preferences-->
<preference name="phonegap-version" /> <!-- all: current version of PhoneGap -->
<preference name="orientation" value="portrait" /> <!-- all: default means both landscape and portrait are enabled -->
<preference name="target-device" value="universal" /> <!-- all: possible values handset, tablet, or universal -->
<preference name="fullscreen" value="false" /> <!-- all: hides the status bar at the top of the screen -->
<preference name="detect-data-types" value="true" /> <!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
<preference name="exit-on-suspend" value="false" /> <!-- ios: if set to true, app will terminate when home button is pressed -->
<preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<preference name="disable-cursor" value="false" /> <!-- blackberry: prevents a mouse-icon/cursor from being displayed on the app -->
<preference name="android-minSdkVersion" value="14" /> <!-- android: MIN SDK version supported on the target device. MAX version is blank by default. -->
<preference name="android-installLocation" value="auto" /> <!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
</widget>