pdlivexp/config.gradle

31 lines
902 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,
2023-08-17 13:19:04 +08:00
versionCode : 443,
2023-08-10 13:51:49 +08:00
versionName : "6.5.4"
2022-07-18 15:31:45 +08:00
]
manifestPlaceholders = [
2023-03-10 11:05:19 +08:00
//正式、
2023-08-18 17:43:13 +08:00
serverHost : "https://napi.yaoulive.com",
2023-04-27 17:00:22 +08:00
// 测试
2023-08-18 17:43:13 +08:00
// 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",
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
2023-08-17 15:38:59 +08:00
isGooglePlay : false,
//是否上报异常日志
2023-08-14 19:16:02 +08:00
isUploadLog : true,
2023-06-14 17:59:08 +08:00
//是否打包成插件包模式
2023-08-17 15:38:59 +08:00
isPluginModel : true,
2022-07-18 15:31:45 +08:00
]
2023-05-08 13:29:24 +08:00
}