added phonegap support...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-07-06 04:17:49 +03:00
parent 5ed51c559d
commit 2c16aed436
2 changed files with 40 additions and 0 deletions

34
config.xml Executable file
View File

@ -0,0 +1,34 @@
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.pWiki.test" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>pWiki</name>
<description>
Portable Wiki (test)
</description>
<author email="alex.nanou@gmail.com" href="https://github.com/flynx">
Alex A. Naanou
</author>
<content src="index.html" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="14" />
<plugin name="cordova-plugin-file" source="npm" spec="~4.1.1" />
<plugin name="cordova-plugin-file-transfer" source="npm" spec="~1.5.0" />
<plugin name="cordova-plugin-media" source="npm" spec="~2.2.0" />
<plugin name="cordova-plugin-network-information" source="npm" spec="~1.2.0" />
<plugin name="cordova-plugin-splashscreen" source="npm" spec="~3.2.1" />
<plugin name="cordova-plugin-statusbar" source="npm" spec="~2.1.2" />
<plugin name="cordova-plugin-whitelist" source="npm" spec="~1.2.1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>

6
package.json Executable file
View File

@ -0,0 +1,6 @@
{
"name": "pWiki",
"version": "0.0.1",
"author": "Alex A. Naanou <alex.nanou@gmail.com>",
"license": "BSD",
}