pdlivexp/config.gradle

30 lines
950 B
Groovy
Raw Normal View History

2022-07-18 15:31:45 +08:00
ext {
android = [
2022-09-17 16:54:58 +08:00
compileSdkVersion: 31,
2023-01-06 15:49:00 +08:00
buildToolsVersion: "29.0.2",
2022-07-18 15:31:45 +08:00
minSdkVersion : 21,
2022-09-17 16:54:58 +08:00
targetSdkVersion : 31,
versionCode : 414,
2023-02-28 17:33:25 +08:00
versionName : "6.4.9"
2022-07-18 15:31:45 +08:00
]
manifestPlaceholders = [
2023-03-10 11:05:19 +08:00
//正式、
// serverHost : "https://napi.yaoulive.com",
2023-02-18 11:05:06 +08:00
//测试
serverHost : "https://ceshi.yaoulive.com",
2022-07-18 15:31:45 +08:00
//腾讯地图
txMapAppKey : "EOZBZ-ASLCU-4XPV3-BDCHZ-4E3Q7-H4BWB",
// txMapAppSecret : "",
//百度语音识别
baiduAppId : "23774720",
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
2023-03-17 10:19:35 +08:00
isGooglePlay : false,
//是否上报异常日志
isUploadLog : true
2022-07-18 15:31:45 +08:00
]
}