41 lines
1.2 KiB
Java
41 lines
1.2 KiB
Java
package com.gh.gamecenter.changeskin;
|
|
|
|
/**
|
|
* Created by khy on 2016/11/16.
|
|
*
|
|
*/
|
|
public class SkinConfig {
|
|
|
|
public static int PG_STATE = 1;
|
|
|
|
/*
|
|
* pageNum : 页数
|
|
* perPage : 请求数量
|
|
*/
|
|
public static int perPage = 300;
|
|
|
|
|
|
public static final int TYPE_DESUPDATE = 1;
|
|
public static final int TYPE_UPDATE = 2;
|
|
public static final int TYPE_STOP = 3;
|
|
public static final int TYPE_RESTART = 4;
|
|
|
|
public static final int MSG_DOWNLOAD_OVER = 100;
|
|
public static final int MSG_PROGRESS_UPDATE = 101;
|
|
public static final int MSG_NETWORK_SPEED = 102;
|
|
public static final int MSG_MD5_PROGRSS = 103;
|
|
public static final int MSG_MD5_OVER = 104;
|
|
public static final int MSG_NETWORK_ERROR = 200;
|
|
|
|
public static final String GAME_ID = "57ce84f88ab49e83728b4572";
|
|
|
|
// http://api.ghzhushou.com/v2d2/game/57ce84f88ab49e83728b4572/skin/data?per_page=1000&page=1
|
|
public static final String JSON_PATCHURL = "http://api.ghzhushou.com/v2d2/game/"
|
|
+ GAME_ID + "/skin/data?per_page=" + perPage + "&page=";
|
|
|
|
// ewan.anfeng 安峰
|
|
public static String patchVersion = "com.netease.ma.uc";
|
|
// public static String patchVersion = "com.netease.ma.bili";
|
|
|
|
}
|