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,
versionCode : 510,
2024-03-26 13:43:13 +08:00
versionName : "6.6.5",
namespace : "com.pandoralive.shayu"
2024-02-23 16:07:50 +08:00
]
manifestPlaceholders = [
//正式、
2024-03-06 13:46:55 +08:00
//serverHost : "https://napi.yaoulive.com",
2024-02-23 16:07:50 +08:00
// 测试
2024-03-06 13:46:55 +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-03-26 16:20:24 +08:00
isGooglePlay : 3,
2024-02-23 16:07:50 +08:00
//是否上报异常日志
isUploadLog : true,
//是否打包成插件包模式
isPluginModel : false,
]
}