manifest.json 3.8 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 27
            "OAuth" : {},
            "Fingerprint" : {},
            "Share" : {},
            "Push" : {}
L
123  
linju 已提交
28 29 30 31 32 33
        },
        /* 应用发布信息 */
        "distribute" : {
            /* android打包配置 */
            "android" : {
                "permissions" : [
L
123  
linju 已提交
34
                    "<uses-feature android:name=\"android.hardware.camera\"/>",
L
123  
linju 已提交
35 36
                    "<uses-feature android:name=\"android.hardware.camera.autofocus\"/>",
                    "<uses-permission android:name=\"android.permission.ACCESS_NETWORK_STATE\"/>",
L
123  
linju 已提交
37
                    "<uses-permission android:name=\"android.permission.ACCESS_WIFI_STATE\"/>",
L
123  
linju 已提交
38
                    "<uses-permission android:name=\"android.permission.CAMERA\"/>",
L
123  
linju 已提交
39 40 41
                    "<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 已提交
42
                    "<uses-permission android:name=\"android.permission.GET_ACCOUNTS\"/>",
L
123  
linju 已提交
43 44 45
                    "<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 已提交
46
                    "<uses-permission android:name=\"android.permission.READ_PHONE_STATE\"/>",
L
123  
linju 已提交
47 48
                    "<uses-permission android:name=\"android.permission.USE_FINGERPRINT\"/>",
                    "<uses-permission android:name=\"android.permission.VIBRATE\"/>",
L
123  
linju 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62
                    "<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 已提交
63 64
                    },
                    "apple" : {}
L
123  
linju 已提交
65
                },
L
123  
linju 已提交
66 67 68 69 70 71 72 73 74 75 76
                "ad" : {},
                "share" : {
                    "weixin" : {
                        "appid" : "wxffdd8fa6ec4ef2a0",
                        "UniversalLinks" : ""
                    }
                },
                "geolocation" : {},
                "push" : {
                    "unipush" : {}
                }
L
123  
linju 已提交
77
            }
L
123  
linju 已提交
78 79
        },
        "nvueLaunchMode" : ""
L
123  
linju 已提交
80 81 82 83 84 85 86 87 88
    },
    /* 快应用特有相关 */
    "quickapp" : {},
    /* 小程序特有相关 */
    "mp-weixin" : {
        "appid" : "",
        "setting" : {
            "urlCheck" : false
        },
芊里 已提交
89
        "usingComponents" : true
L
123  
linju 已提交
90 91 92 93 94 95 96 97 98 99 100 101
    },
    "mp-alipay" : {
        "usingComponents" : true
    },
    "mp-baidu" : {
        "usingComponents" : true
    },
    "mp-toutiao" : {
        "usingComponents" : true
    },
    "uniStatistics" : {
        "enable" : false
DCloud_JSON's avatar
DCloud_JSON 已提交
102 103 104
    },
    "h5" : {
        "template" : "template.h5.html"
L
123  
linju 已提交
105 106
    }
}