2014-03-11 09:59:45 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<widget xmlns = "http://www.w3.org/ns/widgets"
|
|
|
|
xmlns:gap = "http://phonegap.com/ns/1.0"
|
|
|
|
id = "com.phonegap.example"
|
|
|
|
versionCode="10"
|
2014-03-18 09:38:50 +00:00
|
|
|
version = "0.0.0.0.0.0.1">
|
2014-03-11 09:59:45 +00:00
|
|
|
|
|
|
|
<!-- versionCode is optional and Android only -->
|
|
|
|
|
|
|
|
<name>Zahlenschloss</name>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Ein Zahlenschloss mit Hilfe des Kompass
|
|
|
|
</description>
|
|
|
|
|
2014-03-16 11:30:15 +00:00
|
|
|
<author email="clara1@aon.at">
|
|
|
|
BuchWei
|
2014-03-11 09:59:45 +00:00
|
|
|
</author>
|
|
|
|
|
|
|
|
<preference name="permissions" value="none"/>
|
|
|
|
<preference name="fullscreen" value="true" /> <!-- all: hides the status bar at the top of the screen -->
|
|
|
|
<preference name="webviewbounce" value="true" /> <!-- ios: control whether
|
|
|
|
the screen 'bounces' when scrolled beyond the top -->
|
|
|
|
<preference name="android-installLocation" value="preferExternal" />
|
|
|
|
<preference name="EnableViewportScale" value="true" />
|
2014-03-16 11:30:15 +00:00
|
|
|
<preference name="orientation" value="portrait" />
|
2014-03-11 09:59:45 +00:00
|
|
|
|
2014-03-16 11:30:15 +00:00
|
|
|
<gap:plugin name="org.apache.cordova.device-orientation" />
|
2014-03-18 07:30:57 +00:00
|
|
|
<gap:plugin name="org.apache.cordova.device-motion" />
|
2014-03-17 21:24:08 +00:00
|
|
|
|
|
|
|
<feature name="Compass">
|
|
|
|
<param name="android-package" value="org.apache.cordova.deviceorientation.CompassListener" />
|
|
|
|
</feature>
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.myap" android:versionCode="1">
|
2014-03-11 09:59:45 +00:00
|
|
|
<supports-screens
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:xlargeScreens="true"
|
|
|
|
android:resizeable="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
/>
|
2014-03-17 21:24:08 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
2014-03-11 09:59:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
</manifest>
|
|
|
|
|
|
|
|
|
|
|
|
</widget>
|