mirror of
https://github.com/sigmasternchen/combinationLockPG
synced 2025-03-15 11:38:55 +00:00
49 lines
No EOL
1.5 KiB
XML
49 lines
No EOL
1.5 KiB
XML
<?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"
|
|
version = "0.0.3">
|
|
|
|
<!-- versionCode is optional and Android only -->
|
|
|
|
<name>Zahlenschloss</name>
|
|
|
|
<description>
|
|
Ein Zahlenschloss mit Hilfe des Kompass
|
|
</description>
|
|
|
|
<author email="">
|
|
|
|
</author>
|
|
|
|
<icon src="images/icon.png" />
|
|
|
|
<access origin="http://sis.htlinn.ac.at"/>
|
|
<access origin="http://sis.htlinn.ac.at/*"/>
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.myap" android:versionCode="1">
|
|
<supports-screens
|
|
android:largeScreens="true"
|
|
android:normalScreens="true"
|
|
android:smallScreens="true"
|
|
android:xlargeScreens="true"
|
|
android:resizeable="true"
|
|
android:anyDensity="true"
|
|
/>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
</manifest>
|
|
|
|
|
|
</widget> |