How to package apk files locally by yourself using Cordova

2

Index

Stats

6,393 visits, 13,944 views

Tools

Translations

This tutorial hasn't been translated.

License

This tutorial is licensed under CC BY 4.0. Please refer to the license text if you wish to reuse, share or remix the content contained within this tutorial.

Published on 12 Feb, 2017. Last updated 19 Feb, 2019

<?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.mystudio.mygame" version="1.0">

<name>mygamename</name>

<description>Cordova test</description>

<author>You</author>

<icon src="icon-128.png" width="128" height="128" />

<icon src="icon-256.png" width="256" height="256" gap:role="default" />

<preference name="permissions" value="none"/>

<preference name="android-targetSdkVersion" value="21" />

<feature name="http://api.phonegap.com/1.0/network"/>

<preference name="orientation" value="default" />

<preference name="fullscreen" value="true" />

<gap:config-file platform="ios" parent="UIStatusBarHidden"><true/></gap:config-file>

<gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance"><false/></gap:config-file>

<plugin name="cordova-plugin-crosswalk-webview" source="npm" />

<plugin name="cordova-plugin-wkwebview-engine" />

<plugin name="cordova-plugin-file" />

<plugin name="cordova-plugin-httpd" />

<plugin name="cordova-plugin-whitelist" source="npm" />

<access origin="*" />

<!-- Optional splash screen image, e.g.: -->

<!-- <gap:splash src="splash.png" width="1024" height="768" /> -->

</widget>

  • 0 Comments

Want to leave a comment? Login or Register an account!