manifest.json 5.5 KB
Newer Older
L
123  
linju 已提交
1 2
{
    "name" : "base-app",
DCloud_JSON's avatar
DCloud_JSON 已提交
3
    "appid" : "",
L
123  
linju 已提交
4 5 6 7 8 9
    "description" : "",
    "versionName" : "1.0.0",
    "versionCode" : "100",
    "transformPx" : false,
    /* 5+App特有相关 */
    "app-plus" : {
DCloud_JSON's avatar
DCloud_JSON 已提交
10 11 12 13
        "privacy" : {
            "prompt" : "template",
            "template" : {
                "title" : "服务协议和隐私政策",
DCloud_JSON's avatar
DCloud_JSON 已提交
14 15
                "message" : "  请你务必审慎阅读、充分理解“服务协议”和“隐私政策”各条款,包括但不限于:为了更好的向你提供服务,我们需要收集你的设备标识、操作日志等信息用于分析、优化应用性能。<br/>  你可阅读<a href=\"https://ask.dcloud.net.cn/protocol.html\">《服务协议》</a>和<a href=\"https://ask.dcloud.net.cn/protocol.html\">《隐私政策》</a>了解详细信息。如果你同意,请点击下面按钮开始接受我们的服务。",
                "buttonAccept" : "同意",
DCloud_JSON's avatar
DCloud_JSON 已提交
16 17 18
                "buttonRefuse" : "暂不同意"
            }
        },
L
23  
linju 已提交
19 20 21
        "compatible" : {
            "ignoreVersion" : true //true表示忽略版本检查提示框,HBuilderX1.9.0及以上版本支持  
        },
L
123  
linju 已提交
22 23 24 25 26 27 28 29 30 31 32
        "usingComponents" : true,
        "nvueStyleCompiler" : "uni-app",
        "compilerVersion" : 3,
        "splashscreen" : {
            "alwaysShowBeforeRender" : true,
            "waiting" : true,
            "autoclose" : true,
            "delay" : 0
        },
        /* 模块配置 */
        "modules" : {
L
123  
linju 已提交
33 34 35
            "OAuth" : {},
            "Fingerprint" : {},
            "Share" : {},
DCloud_JSON's avatar
DCloud_JSON 已提交
36 37
            "Push" : {},
            "Payment" : {}
L
123  
linju 已提交
38 39 40 41 42
        },
        /* 应用发布信息 */
        "distribute" : {
            /* android打包配置 */
            "android" : {
DCloud_JSON's avatar
DCloud_JSON 已提交
43 44 45 46 47 48 49 50
                // "permissionExternalStorage" : {
                //     "request" : "none",
                //     "prompt" : "应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。"
                // },
                // "permissionPhoneState" : {
                //     "request" : "none",
                //     "prompt" : "为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。"
                // },
L
123  
linju 已提交
51
                "permissions" : [
L
123  
linju 已提交
52
                    "<uses-feature android:name=\"android.hardware.camera\"/>",
L
123  
linju 已提交
53 54
                    "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
                    "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
L
123  
linju 已提交
55
                    "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
L
123  
linju 已提交
56
                    "<uses-permission android:name=\"android.permission.CAMERA\"/>",
L
123  
linju 已提交
57 58 59
                    "<uses-permission android:name=\"android.permission.CHANGE_NETWORK_STATE\"/>",
                    "<uses-permission android:name=\"android.permission.CHANGE_WIFI_STATE\"/>",
                    "<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
L
123  
linju 已提交
60
                    "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
L
123  
linju 已提交
61 62 63
                    "<uses-permission android:name=\"android.permission.MODIFY_AUDIO_SETTINGS\"/>",
                    "<uses-permission android:name=\"android.permission.MOUNT_UNMOUNT_FILESYSTEMS\"/>",
                    "<uses-permission android:name=\"android.permission.READ_LOGS\"/>",
L
123  
linju 已提交
64
                    "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
L
123  
linju 已提交
65 66
                    "<uses-permission android:name=\"android.permission.USE_FINGERPRINT\"/>",
                    "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
L
123  
linju 已提交
67 68 69 70 71 72 73 74 75 76 77
                    "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
                    "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
                ]
            },
            /* ios打包配置 */
            "ios" : {},
            /* SDK配置 */
            "sdkConfigs" : {
                "oauth" : {
                    "univerify" : {},
                    "weixin" : {
DCloud_JSON's avatar
DCloud_JSON 已提交
78
                        "appid" : "",
L
123  
linju 已提交
79 80
                        "appsecret" : "",
                        "UniversalLinks" : ""
L
123  
linju 已提交
81 82
                    },
                    "apple" : {}
L
123  
linju 已提交
83
                },
L
123  
linju 已提交
84 85 86
                "ad" : {},
                "share" : {
                    "weixin" : {
DCloud_JSON's avatar
DCloud_JSON 已提交
87
                        "appid" : "",
L
123  
linju 已提交
88 89 90 91 92 93
                        "UniversalLinks" : ""
                    }
                },
                "geolocation" : {},
                "push" : {
                    "unipush" : {}
DCloud_JSON's avatar
DCloud_JSON 已提交
94 95 96 97
                },
                "payment" : {
                    "weixin" : {
                        "__platform__" : [ "ios", "android" ],
DCloud_JSON's avatar
DCloud_JSON 已提交
98
                        "appid" : "",
DCloud_JSON's avatar
DCloud_JSON 已提交
99 100
                        "UniversalLinks" : ""
                    }
L
123  
linju 已提交
101
                }
L
123  
linju 已提交
102
            }
L
123  
linju 已提交
103 104
        },
        "nvueLaunchMode" : ""
L
123  
linju 已提交
105 106 107 108 109
    },
    /* 快应用特有相关 */
    "quickapp" : {},
    /* 小程序特有相关 */
    "mp-weixin" : {
DCloud_JSON's avatar
DCloud_JSON 已提交
110
        "appid" : "",
L
123  
linju 已提交
111
        "setting" : {
DCloud_JSON's avatar
重构  
DCloud_JSON 已提交
112
            "urlCheck" : false,
113
            "es6" : true
L
123  
linju 已提交
114
        },
115 116
        "usingComponents" : true ,
		"betterScopedSlots" : true
L
123  
linju 已提交
117 118 119 120 121 122 123 124 125 126 127 128
    },
    "mp-alipay" : {
        "usingComponents" : true
    },
    "mp-baidu" : {
        "usingComponents" : true
    },
    "mp-toutiao" : {
        "usingComponents" : true
    },
    "uniStatistics" : {
        "enable" : false
DCloud_JSON's avatar
DCloud_JSON 已提交
129 130
    },
    "h5" : {
DCloud_JSON's avatar
123  
DCloud_JSON 已提交
131
        "template" : ""
L
123  
linju 已提交
132 133
    }
}