pdlivexp/config.gradle

31 lines
951 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 : 420,
versionName : "6.5.1"
2022-07-18 15:31:45 +08:00
]
manifestPlaceholders = [
2023-03-10 11:05:19 +08:00
//正式、
serverHost : "https://napi.yaoulive.com",
2023-04-27 17:00:22 +08:00
// 测试
// serverHost : "https://ceshi.yaoulive.com",
2022-07-18 15:31:45 +08:00
//腾讯地图
txMapAppKey : "EOZBZ-ASLCU-4XPV3-BDCHZ-4E3Q7-H4BWB",
2022-07-18 15:31:45 +08:00
// txMapAppSecret : "",
//百度语音识别
baiduAppId : "23774720",
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
2023-04-27 17:00:22 +08:00
isGooglePlay : false,
//是否上报异常日志
2023-04-10 16:07:18 +08:00
isUploadLog : true
2022-07-18 15:31:45 +08:00
]
}