pandorapan/config.gradle

37 lines
1.3 KiB
Groovy
Raw Normal View History

2024-02-23 16:07:50 +08:00
ext {
android = [
compileSdkVersion: 34,
2024-02-23 16:07:50 +08:00
buildToolsVersion: "29.0.2",
2024-03-26 13:43:13 +08:00
minSdkVersion : 23,
targetSdkVersion : 34,
versionCode : 606,
versionName : "6.8.2",
2024-03-26 13:43:13 +08:00
namespace : "com.pandoralive.shayu"
2024-02-23 16:07:50 +08:00
]
manifestPlaceholders = [
//正式、
2024-06-17 11:28:58 +08:00
serverHost : "https://napi.yaoulive.com",
2024-02-23 16:07:50 +08:00
// 测试
testServerHost : "https://ceshi.yaoulive.com",
2024-05-21 12:58:06 +08:00
buildTime : new Date().format("MM-dd HH:mm", TimeZone.getTimeZone("GMT+8")),
2024-02-23 16:07:50 +08:00
//百度语音识别
2024-06-05 17:55:05 +08:00
swReleaseModel : false, //true 声网正式服 false 测试服
2024-06-05 17:55:05 +08:00
2024-02-23 16:07:50 +08:00
baiduAppId : "23774720",
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
// isGooglePlay : false,
2024-06-05 17:55:05 +08:00
// true表示谷歌支付 false 0 链接包(isPluginModel-> true) 1 谷歌包 2华为包 3 samsung包
isGooglePlay : 1,
2024-02-23 16:07:50 +08:00
//是否上报异常日志
isUploadLog : true,
//是否打包成插件包模式
isPluginModel : false,
2024-02-23 16:07:50 +08:00
]
}