pdlivexp/config.gradle

32 lines
906 B
Groovy
Raw Normal View History

2022-07-18 15:31:45 +08:00
ext {
android = [
2023-08-19 16:05:30 +08:00
compileSdkVersion: 33,
2023-01-06 15:49:00 +08:00
buildToolsVersion: "29.0.2",
2022-07-18 15:31:45 +08:00
minSdkVersion : 21,
2023-08-19 16:05:30 +08:00
targetSdkVersion : 33,
2023-11-15 14:27:56 +08:00
versionCode : 456,
versionName : "6.6.2"
2022-07-18 15:31:45 +08:00
]
manifestPlaceholders = [
2023-03-10 11:05:19 +08:00
//正式、
serverHost : "https://napi.yaoulive.com",
// 测试
// serverHost : " https://ceshi.yaoulive.com",
2022-07-18 15:31:45 +08:00
2022-07-18 15:31:45 +08:00
2023-07-17 16:10:29 +08:00
//百度语音识别
2022-07-18 15:31:45 +08:00
baiduAppId : "23774720",
2023-09-02 10:10:50 +08:00
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnR B",
2022-07-18 15:31:45 +08:00
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
2023-10-19 09:45:45 +08:00
isGooglePlay : true,
//是否上报异常日志
2023-08-14 19:16:02 +08:00
isUploadLog : true,
2023-06-14 17:59:08 +08:00
//是否打包成插件包模式
2023-10-19 09:45:45 +08:00
isPluginModel : false,
2023-09-26 10:31:39 +08:00
]
2023-05-08 13:29:24 +08:00
}