admin
2022-01-20 d8ef9a783b9e0b2a495f02fdf3daaf27ef49e99d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.demo.app.utils;
 
public class Constant {
    public final static boolean DEBUG = false;
 
    public final static String HOST = "http://xxx";
 
    public final static String DOWNLOAD_DIR_NAME = "xxx";
 
    public final static boolean isDisableProxy = false;
 
    public static final String USER_AGREEMENT = "http://h5.hanju.goxcw.com/hanju/user_protocol.html";
    public static final String PRIVACY_POLICY = "http://h5.hanju.goxcw.com/hanju/privacy.html";
    public static final String DISCLAIMER = "http://h5.hanju.goxcw.com/hanju/disclaimer.html";
 
}