zoukankan      html  css  js  c++  java
  • cordova-config.xml 配置记录

    <?xml version='1.0' encoding='utf-8'?>
    <widget id="come.gs.webapp1" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
        <name>我的app</name>//app 名称显示到桌面的
        <description>
            A sample Apache Cordova application that responds to the deviceready event.
        </description>
        <author email="tong" href="">
            Apache Cordova Team
        </author>
        <access origin="*" /> // 设置所有域名可访问
        <allow-navigation href="*://*.192.168.0.240:9090/*" />// 设置远程地址
        <content src="index.html" />
        <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>
        <plugin name="cordova-plugin-whitelist" spec="1" />
        <plugin name="cordova-plugin-screen-orientation" spec="^3.0.1" />//启用的插件
        <engine name="ios" spec="^4.5.5" />
    </widget>
    

      

    https://www.tongbiao.xyz/
  • 相关阅读:
    矩阵求导笔记
    Saliency map实现
    lime用法浅析
    LeetCode 989. 数组形式的整数加法
    题解:[P1009 阶乘之和]
    P1008三连击
    vim-2
    c#基础零碎记录
    asp.net core MySQL 數據遷移
    虚函数
  • 原文地址:https://www.cnblogs.com/tongbiao/p/9463636.html
Copyright © 2011-2022 走看看