3493a58590
修复一下问题: 1.心愿单 2.开播通知问题 3.头像框闪烁问题
37 lines
1.3 KiB
Groovy
37 lines
1.3 KiB
Groovy
ext {
|
|
android = [
|
|
compileSdkVersion: 34,
|
|
buildToolsVersion: "29.0.2",
|
|
minSdkVersion : 23,
|
|
targetSdkVersion : 34,
|
|
versionCode : 546,
|
|
versionName : "6.8.0",
|
|
namespace : "com.pandoralive.shayu"
|
|
]
|
|
manifestPlaceholders = [
|
|
//正式、
|
|
serverHost : "https://napi.yaoulive.com",
|
|
// 测试
|
|
testServerHost : "https://ceshi.yaoulive.com",
|
|
buildTime : new Date().format("MM-dd HH:mm", TimeZone.getTimeZone("GMT+8")),
|
|
|
|
//百度语音识别
|
|
|
|
swReleaseModel : true, //true 声网正式服 false 测试服
|
|
|
|
baiduAppId : "23774720",
|
|
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
|
|
|
|
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
|
|
// true表示谷歌支付 false
|
|
// isGooglePlay : false,
|
|
// true表示谷歌支付 false 0 链接包(isPluginModel-> true) 1 谷歌包 2华为包 3 samsung包
|
|
isGooglePlay : 1,
|
|
|
|
//是否上报异常日志
|
|
isUploadLog : true,
|
|
//是否打包成插件包模式
|
|
isPluginModel : false,
|
|
]
|
|
}
|