pandorapan/config.gradle

33 lines
1.1 KiB
Groovy
Raw Normal View History

2024-02-23 16:07:50 +08:00
ext {
android = [
compileSdkVersion: 33,
buildToolsVersion: "29.0.2",
2024-03-26 13:43:13 +08:00
minSdkVersion : 23,
2024-02-23 16:07:50 +08:00
targetSdkVersion : 33,
2024-04-08 17:19:39 +08:00
versionCode : 516,
versionName : "6.6.6",
2024-03-26 13:43:13 +08:00
namespace : "com.pandoralive.shayu"
2024-02-23 16:07:50 +08:00
]
manifestPlaceholders = [
//正式、
2024-04-11 16:43:01 +08:00
serverHost : "https://napi.yaoulive.com",
2024-02-23 16:07:50 +08:00
// 测试
2024-04-11 16:43:01 +08:00
// serverHost : " https://ceshi.yaoulive.com",
2024-02-23 16:07:50 +08:00
//百度语音识别
baiduAppId : "23774720",
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
// true表示谷歌支付 false
// isGooglePlay : false,
// true表示谷歌支付 false 0 链接包 1 谷歌包 2华为包
2024-04-02 13:19:29 +08:00
isGooglePlay : 0,
2024-02-23 16:07:50 +08:00
//是否上报异常日志
isUploadLog : true,
//是否打包成插件包模式
2024-04-02 13:19:29 +08:00
isPluginModel : true,
2024-02-23 16:07:50 +08:00
]
}