Blame view

lib/common/core/app_consts.dart 732 Bytes
50c66ad6   liangchengyou   feat:开发环境配置文件
1
  import '../request/basic_config.dart';
997ea0d6   liangchengyou   feat:绘本闪退问题修复
2
  
c61b3c1a   Key   feat: toast_util....
3
4
  class AppConsts {
    /// 隐私协议
e6a4e63c   Key   fixed: 修改个人信息性别
5
    static const String userPrivacyPolicyUrl = 'http://page.kouyuxingqiu.com/wowenglishuserregister.html';
c61b3c1a   Key   feat: toast_util....
6
7
  
    /// 儿童隐私协议
e6a4e63c   Key   fixed: 修改个人信息性别
8
    static const String childrenPrivacyPolicyUrl = 'http://page.kouyuxingqiu.com/wowenglishchildprotect.html';
c61b3c1a   Key   feat: toast_util....
9
10
11
  
    /// 与第三方共享协议
    static const String userTermSdkUrl = 'http://page.kouyuxingqiu.com/term_sdk.html';
997ea0d6   liangchengyou   feat:绘本闪退问题修复
12
13
  
    /// 先声SDK
31d42f06   liangchengyou   feat:视频跟读录音修改
14
    static  String xsAppKey = 'a418';
f6c73562   吴启风   feat:修改环境变量为生产环境
15
16
    static  String xsAppSecretKey = BasicConfig.isTestDev?'1a16f31f2611bf32fb7b3fc38f5b2c81':'c11163aa6c834a028da4a4b30955be99';
    static  String xsAppService = BasicConfig.isTestDev?'ws://trial.cloud.ssapi.cn:8080':'"wss://api.cloud.ssapi.cn';
c61b3c1a   Key   feat: toast_util....
17
  }