Skip to content

Commit 44ecb2a

Browse files
authored
Trying to create app on phonegap
1 parent 34fe57d commit 44ecb2a

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

config.xml

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!-- config.xml reference: https://build.phonegap.com/docs/config-xml -->
4+
<widget xmlns = "http://www.w3.org/ns/widgets"
5+
xmlns:gap = "http://phonegap.com/ns/1.0"
6+
id = "com.phonegap.chessvsai"
7+
version = "1.0.0">
8+
9+
<name>Chess vs AI</name>
10+
11+
<description>
12+
This is a classic game! Only Player vs AI in this app and sadly it is still full of bugs...
13+
</description>
14+
15+
<author href="http://www.google.com/" email="[email protected]">
16+
Stefan "Darlanio" Alenius
17+
</author>
18+
19+
<!--
20+
If you do not want any permissions to be added to your app, add the
21+
following tag to your config.xml; you will still have the INTERNET
22+
permission on your app, which PhoneGap requires.
23+
-->
24+
<preference name="permissions" value="none" />
25+
26+
<!-- Customize your app and platform with the preference element. -->
27+
<preference name="orientation" value="portrait" /> <!-- all: default means both landscape and portrait are enabled -->
28+
<preference name="target-device" value="universal" /> <!-- all: possible values handset, tablet, or universal -->
29+
<preference name="fullscreen" value="true" /> <!-- all: hides the status bar at the top of the screen -->
30+
<preference name="webviewbounce" value="true" /> <!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
31+
<preference name="prerendered-icon" value="true" /> <!-- ios: if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen -->
32+
<preference name="stay-in-webview" value="false" /> <!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
33+
<preference name="ios-statusbarstyle" value="black-opaque" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
34+
<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 -->
35+
<preference name="exit-on-suspend" value="false" /> <!-- ios: if set to true, app will terminate when home button is pressed -->
36+
<preference name="show-splash-screen-spinner" value="true" /> <!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
37+
<preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
38+
<preference name="disable-cursor" value="false" /> <!-- blackberry: prevents a mouse-icon/cursor from being displayed on the app -->
39+
<preference name="android-installLocation" value="auto" /> <!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
40+
41+
<!-- Plugins -->
42+
43+
<!-- Core plugins -->
44+
45+
46+
<!-- Third party plugins -->
47+
<!-- A list of available plugins are available at https://build.phonegap.com/plugins -->
48+
49+
50+
<!-- Define app icon for each platform. -->
51+
<icon src="icon.png" />
52+
53+
<!-- Define app splash screen for each platform. -->
54+
55+
<!--
56+
Define access to external domains.
57+
<access /> - a blank access tag denies access to all external resources.
58+
-->
59+
60+
<access origin="*"/>
61+
62+
</widget>

icon.png

5.9 KB
Loading

0 commit comments

Comments
 (0)