manifest.json 4.7 KB
Newer Older
L
123  
linju 已提交
1 2 3 4 5 6 7 8 9
{
    "name" : "base-app",
    "appid" : "__UNI__03B096E",
    "description" : "",
    "versionName" : "1.0.0",
    "versionCode" : "100",
    "transformPx" : false,
    /* 5+App特有相关 */
    "app-plus" : {
L
23  
linju 已提交
10 11 12
        "compatible" : {
            "ignoreVersion" : true //true表示忽略版本检查提示框,HBuilderX1.9.0及以上版本支持  
        },
L
123  
linju 已提交
13 14 15 16 17 18 19 20 21 22 23
        "usingComponents" : true,
        "nvueStyleCompiler" : "uni-app",
        "compilerVersion" : 3,
        "splashscreen" : {
            "alwaysShowBeforeRender" : true,
            "waiting" : true,
            "autoclose" : true,
            "delay" : 0
        },
        /* 模块配置 */
        "modules" : {
L
123  
linju 已提交
24 25 26
            "OAuth" : {},
            "Fingerprint" : {},
            "Share" : {},
DCloud_JSON's avatar
DCloud_JSON 已提交
27 28
            "Push" : {},
            "Payment" : {}
L
123  
linju 已提交
29 30 31 32 33
        },
        /* 应用发布信息 */
        "distribute" : {
            /* android打包配置 */
            "android" : {
DCloud_JSON's avatar
DCloud_JSON 已提交
34 35 36 37 38 39 40 41
                "permissionExternalStorage" : {
                    "request" : "none",
                    "prompt" : "应用保存运行状态等信息,需要获取读写手机存储(系统提示为访问设备上的照片、媒体内容和文件)权限,请允许。"
                },
                "permissionPhoneState" : {
                    "request" : "none",
                    "prompt" : "为保证您正常、安全地使用,需要获取设备识别码(部分手机提示为获取手机号码)使用权限,请允许。"
                },
L
123  
linju 已提交
42
                "permissions" : [
L
123  
linju 已提交
43
                    "<uses-feature android:name=\"android.hardware.camera\"/>",
L
123  
linju 已提交
44 45
                    "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
                    "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
L
123  
linju 已提交
46
                    "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
L
123  
linju 已提交
47
                    "<uses-permission android:name=\"android.permission.CAMERA\"/>",
L
123  
linju 已提交
48 49 50
                    "<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 已提交
51
                    "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
L
123  
linju 已提交
52 53 54
                    "<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 已提交
55
                    "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
L
123  
linju 已提交
56 57
                    "<uses-permission android:name=\"android.permission.USE_FINGERPRINT\"/>",
                    "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
L
123  
linju 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71
                    "<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
                    "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
                ]
            },
            /* ios打包配置 */
            "ios" : {},
            /* SDK配置 */
            "sdkConfigs" : {
                "oauth" : {
                    "univerify" : {},
                    "weixin" : {
                        "appid" : "wxffdd8fa6ec4ef2a0",
                        "appsecret" : "",
                        "UniversalLinks" : ""
L
123  
linju 已提交
72 73
                    },
                    "apple" : {}
L
123  
linju 已提交
74
                },
L
123  
linju 已提交
75 76 77 78 79 80 81 82 83 84
                "ad" : {},
                "share" : {
                    "weixin" : {
                        "appid" : "wxffdd8fa6ec4ef2a0",
                        "UniversalLinks" : ""
                    }
                },
                "geolocation" : {},
                "push" : {
                    "unipush" : {}
DCloud_JSON's avatar
DCloud_JSON 已提交
85 86 87 88 89 90 91
                },
                "payment" : {
                    "weixin" : {
                        "__platform__" : [ "ios", "android" ],
                        "appid" : "wxffdd8fa6ec4ef2a0",
                        "UniversalLinks" : ""
                    }
L
123  
linju 已提交
92
                }
L
123  
linju 已提交
93
            }
L
123  
linju 已提交
94 95
        },
        "nvueLaunchMode" : ""
L
123  
linju 已提交
96 97 98 99 100 101 102 103 104
    },
    /* 快应用特有相关 */
    "quickapp" : {},
    /* 小程序特有相关 */
    "mp-weixin" : {
        "appid" : "",
        "setting" : {
            "urlCheck" : false
        },
芊里 已提交
105
        "usingComponents" : true
L
123  
linju 已提交
106 107 108 109 110 111 112 113 114 115 116 117
    },
    "mp-alipay" : {
        "usingComponents" : true
    },
    "mp-baidu" : {
        "usingComponents" : true
    },
    "mp-toutiao" : {
        "usingComponents" : true
    },
    "uniStatistics" : {
        "enable" : false
DCloud_JSON's avatar
DCloud_JSON 已提交
118 119
    },
    "h5" : {
DCloud_JSON's avatar
123  
DCloud_JSON 已提交
120
        "template" : ""
L
123  
linju 已提交
121 122
    }
}