Constants.java
3.47 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.chudiangameplay.android.constant;
import com.chudiangameplay.android.manager.Config;
/**
* Created by Administrator on 2018/8/13.
* 常量类
*/
public class Constants {
public static String ChatRoom_AppId = "9f7a26f14c714b199b218fdd6f9d913b";
private static String HOST_RELEASE = "https://";
private static String HOST_TEST = "https://t-";
private static String HOST_PRE = "https://pre-";
private static String HOST = HOST_RELEASE;
static {
if (Config.curVersion == Config.RELEASE) {
//正式环境
HOST = HOST_RELEASE;
} else if(Config.curVersion == Config.ALPHA) {
//测试环境
HOST = HOST_TEST;
} else if(Config.curVersion == Config.PRE) {
//预发布环境
HOST = HOST_PRE;
}
}
//H5链接
public static String H5_Help_Wallet = HOST + "open.apeiwan.com/app-word-h5/pay_recharge/index.html"; //钱包充值说明
public static String H5_Help_Wallet_Meilizhi = HOST + "open.apeiwan.com/app-word-h5/charisma_usage/index.html"; //魅力值
public static String H5_Help_Center = HOST_RELEASE + "open.apeiwan.com/app-word-h5/help/nav.html"; //"我的"页面 帮助中心
public static String H5_Xieyi = HOST + "open.apeiwan.com/app-word-h5/godprotocol/index.html"; //"大神协议
public static String H5_VipCenter = HOST + "h5.apeiwan.com/app/growth.html"; //会员中心-正式线
public static String H5_VipCenter_ShuoMing = HOST + "h5.apeiwan.com/app/instructions/members.html"; //会员中心-会员说明
public static String H5_Regist_XieYi = HOST + "open.apeiwan.com/app-word-h5/registerprotocol/index.html"; //注册协议
public static String H5_Noble = HOST + "h5.apeiwan.com/app/nobility.html"; //贵族
public static String H5_Noble_Help = HOST + "h5.apeiwan.com/htm/nobility/help.html"; //贵族
public static String H5_Mine_ZhuangBan = HOST + "h5.apeiwan.com/app/decorate.html"; //装扮
public static String H5_Rank = HOST +"h5.apeiwan.com/app/toplist.html?roomNo=";
public static String H5_Mine_Fuli = HOST + "h5.apeiwan.com/app/welfare.html"; //福利大厅
public static String H5_Mine_Share = HOST + "app.apeiwan.com/?app_recommend=1"; //推荐好友
public static String H5_Mine_Share_DongTai = HOST + "h5.apeiwan.com/app/share.html?dynamicId="; //动态分享
public static String H5_Mine_Share_UserDetail = HOST + "m.apeiwan.com/#/user/detail"; //用户主页
public static String H5_Home_Room_PaiHang = HOST + "h5.apeiwan.com/app/ranklist.html"; //排行榜
public static String H5_Help_Wallet_PiPiBi = HOST + "h5.apeiwan.com/htm/recharge/android.html"; //皮皮币充值说明
public static String H5_Help_Wallet_ZuanShi2 = HOST + "h5.apeiwan.com/htm/recharge/android_d.html"; //钻石充值说明
public static String H5_JieDan_Skill = HOST + "h5.apeiwan.com/player/#/skill"; //接单设置- 申请技能
public static String H5_ChengWeiDaShen = HOST + "h5.apeiwan.com/player/#/"; //接单设置- 成为大神
public static String H5_JieDan_Skill_ShiLi = HOST + "h5.apeiwan.com/htm/eg/skill.html"; //接单设置- 示例
public static String H5_Homemine_Level = HOST + "h5.apeiwan.com/app/level.html"; //我的- 陪玩师等级
public static String H5_JieDanSheZhi_Price = HOST + "h5.apeiwan.com/app/price.html?techAuthId="; //接单设置- 价格设置
}