config.json 822 字节
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
{
	"frameworks": [
		"CoreGraphics.framework",
		"WebKit.framework",
		"Security.framework"
	],
	"deploymentTarget": "12.0",
	"parameters": {
		"appid": {
			"des": "请填写微信开发者平台对应app的APPID"
		},
		"universalLink": {
			"des": "请填写能唤起当前应用的Universal Links路径(https开头,以“/”结尾,建议带path,比如“https://your_domain/app/”),在实际调用SDK时,会校验Universal Links是否匹配"
		}
	},
	"plists": {
		"CFBundleURLTypes": [{
			"CFBundleTypeRole": "Editor",
			"CFBundleURLName": "WeChat",
			"CFBundleURLSchemes": [
				"{$appid}"
			]
		}],
		"LSApplicationQueriesSchemes": ["weixin", "weixinULAPI", "weixinURLParamsAPI"],
		"WeChat": {
			"appid": "{$appid}",
			"universalLink": "{$universalLink}"
		}
	}
}