app_const.dart
1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/// Dart-side configuration used by the app today.
abstract final class AppConst {
static const String appName = 'DoubleFeel';
static const String serverBaseUrl = 'https://api.doublefeel.cn';
static const String serverBaseUrlGlobal = 'https://api-oversea.doublefeel.cn';
/// WebSocket path supplied by the DoubleFeel server.
static const String webSocketPath = '/client/doublefeel/ws/';
static const String prefixXlabServerHost = 'xlab';
static const String prefixDevServerHost = 'dev';
static const String appIdThinkingDataDebug =
'1efaeef2c4c04a3bac557d78899ecee6';
static const String appIdThinkingDataRelease =
'6e53fb7a8f5f483081c15b8f5f017401';
static const String thinkingDataServerUrl = 'https://ta-api.didiapp.com';
static const int pushPlatformHuawei = 2;
static const String appKeyRongCloudProduct = 'tdrvipkstu055';
static const String appKeyRongCloudDev = 'k51hidwqkz8bb';
static const String obsSceneAvatar = 'avatar';
static const String userTerms =
'https://cdn.doublefeel.cn/doublefeel/protocol/DoubleFeel%E7%94%A8%E6%88%B7%E5%8D%8F%E8%AE%AE.html';
static const String privacyPolicy =
'https://cdn.doublefeel.cn/doublefeel/protocol/DoubleFeel%E9%9A%90%E7%A7%81%E5%8D%8F%E8%AE%AE.html';
static const String userTermsGlobal =
'https://cdn-oversea.doublefeel.cn/doublefeel/protocol/DoubleFeel_Terms_of_Service.html';
static const String privacyPolicyGlobal =
'https://cdn-oversea.doublefeel.cn/doublefeel/protocol/DoubleFeel_Privacy_Policy.html';
static const String userSubmissionAgreement =
'https://cdn.doublefeel.cn/doublefeel/protocol/creator.html';
static const String userSubmissionAgreementGlobal =
'https://cdn-oversea.doublefeel.cn/doublefeel/protocol/DoubleFeel_Creator_Agreement.html';
}