pdlivexp/config.gradle

38 lines
1.3 KiB
Groovy
Raw Normal View History

2022-07-18 15:31:45 +08:00
ext {
android = [
2024-07-13 10:37:37 +08:00
compileSdkVersion: 34,
2023-01-06 15:49:00 +08:00
buildToolsVersion: "29.0.2",
2024-07-13 10:37:37 +08:00
minSdkVersion : 23,
targetSdkVersion : 34,
2024-08-21 17:04:50 +08:00
versionCode : 664,
versionName : "6.6.1"
2022-07-18 15:31:45 +08:00
]
manifestPlaceholders = [
2023-03-10 11:05:19 +08:00
//正式、
// serverHost : "https://napi.yaoulive.com",
serverHost : "https://napi.yaoulive.com",
2024-06-01 14:33:27 +08:00
buildTime : new Date().format("MM-dd HH:mm", TimeZone.getTimeZone("GMT+8")),
testServerHost : "https://ceshi.yaoulive.com",
2024-06-01 14:33:27 +08:00
2023-07-17 16:10:29 +08:00
//百度语音识别
2022-07-18 15:31:45 +08:00
swReleaseModel : true, //true 声网正式服 false 测试服
2024-06-05 16:37:24 +08:00
2022-07-18 15:31:45 +08:00
baiduAppId : "23774720",
2023-11-27 17:12:27 +08:00
baiduAppKey : "zgCgFhUKEOV7I3ZXDFpTfnRB",
2023-09-02 10:10:50 +08:00
2022-07-18 15:31:45 +08:00
baiduAppSecretKey: "nEVSgmuGpU0pjPr6VleEGGAl0hzGW52S",
2023-12-07 17:38:38 +08:00
2024-06-05 13:27:22 +08:00
// true表示谷歌支付 false 0 链接包(isPluginModel-> true) 1 谷歌包 2华为包 3 samsung包
isGooglePlay : 0,
//是否上报异常日志
2023-12-07 17:38:38 +08:00
isUploadLog : true,
2023-06-14 17:59:08 +08:00
//是否打包成插件包模式
isPluginModel : false,
2024-08-20 15:18:54 +08:00
facebook_app_id : "2011402032399020",
facebook_client_token : "959584e054a33614996361f0044e5253",
2024-08-21 17:04:50 +08:00
lineChannelId : "1656399535"
2023-09-26 10:31:39 +08:00
]
2023-05-08 13:29:24 +08:00
}