Blame view

lib/common/core/app_consts.dart 877 Bytes
50c66ad6   liangchengyou   feat:开发环境配置文件
1
  import '../request/basic_config.dart';
997ea0d6   liangchengyou   feat:绘本闪退问题修复
2
  
c61b3c1a   Key   feat: toast_util....
3
4
  class AppConsts {
    /// 隐私协议
a04e399e   biao   小鹅购买
5
6
    static const String userPrivacyPolicyUrl =
        'http://page.kouyuxingqiu.com/wowenglishuserregister.html';
c61b3c1a   Key   feat: toast_util....
7
8
  
    /// 儿童隐私协议
a04e399e   biao   小鹅购买
9
10
11
12
13
    static const String childrenPrivacyPolicyUrl =
        'http://page.kouyuxingqiu.com/wowenglishchildprotect.html';
  
    /// 小鵝通
    static const String xiaoeShopUrl = 'https://appo61s7g678876.h5.xiaoeknow.com';
c61b3c1a   Key   feat: toast_util....
14
15
  
    /// 与第三方共享协议
a04e399e   biao   小鹅购买
16
17
    static const String userTermSdkUrl =
        'http://page.kouyuxingqiu.com/term_sdk.html';
997ea0d6   liangchengyou   feat:绘本闪退问题修复
18
19
  
    /// 先声SDK
a04e399e   biao   小鹅购买
20
21
22
23
24
25
26
    static String xsAppKey = 'a418';
    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....
27
  }