96 lines
4.3 KiB
Java
96 lines
4.3 KiB
Java
package com.uiui.sn.config;
|
|
|
|
public class CommonConfig {
|
|
/*首次开机*/
|
|
public final static String JGY_FIRST_BOOT = "first_boot";
|
|
/*保存的应用版本号*/
|
|
public final static String SN_VERSIONCODE = "SN_VERSIONCODE";
|
|
/*首次连接*/
|
|
public final static String JGY_FIRST_CONNECT = "first_connect";
|
|
/*后台的白名单*/
|
|
public final static String ONLY_SHORTCUT_LIST = "only_jgy_shortcut_list";
|
|
/*获取设备的标签*/
|
|
public final static String DEVICES_TAG = "DEVICES_TAG";
|
|
/*默认桌面key*/
|
|
public final static String DESKTOP_APP_KEY = "desktop_app_key";
|
|
public final static String BROWSER_APP_KEY = "browser_app_key";
|
|
public final static String TYPEWRITING_APP_KEY = "typewriting_app_key";
|
|
|
|
public static String isLogined = "isLogined";
|
|
public static String AES_KEY = "0123456789ABCDEF";
|
|
public static String HTTP_KEY = "YTM3YTAxNTJmMmZmNzkyM2E2YzIwZjlhZTc0NzNmMGI=";
|
|
public static String UserName = "USERINFO_NAME";
|
|
public static String UserSchool = "USERINFO_SCHOOL";
|
|
public static String UserGrade = "USERINFO_GRADE";
|
|
public static String userDebugMode = "ZUOYEOS_DEBUG";
|
|
public static String EnableDebug = "EnableDebug";
|
|
public static String SP_Userinfo_json = "USERINFO_JSON";
|
|
|
|
public static final String KEY_IS_CONTROL = "is_control_key";
|
|
|
|
/**
|
|
* 管控系统指令
|
|
*/
|
|
|
|
/*USB模式-充电*/
|
|
public final static String AOLE_ACTION_USB_USB_CHARGE = "aole_action_usb_usb_charge";
|
|
/*USB模式-MTP*/
|
|
public final static String AOLE_ACTION_USB_USB_MTP = "aole_action_usb_usb_mtp";
|
|
/*USB模式-MIDI*/
|
|
public final static String AOLE_ACTION_USB_USB_MIDI = "aole_action_usb_usb_midi";
|
|
|
|
/*应用安装白名单*/
|
|
public final static String AOLE_ACTION_APP_FORBID = "aole_app_forbid";
|
|
/*强制安装应用,禁止卸载*/
|
|
public final static String AOLE_ACTION_FORCE_APP = "aole_force_app";
|
|
/*禁止升级的应用列表*/
|
|
public final static String AOLE_ACTION_DISALLOW_UPGRADE = "upgrade_disallow";
|
|
/*全局 更新获取的包名*/
|
|
public final static String AOLE_ACTION_OVERALL_APP = "overall_app_packages";
|
|
|
|
/*应用ID管控*/
|
|
public final static String AOLE_ACTION_APP_FORBID_ID = "aole_app_forbid_id";
|
|
/*应用ID管控*/
|
|
public final static String AOLE_ACTION_APP_FORBID_ARRAY = "DeselectViewArray";
|
|
|
|
/*禁止应用滑动*/
|
|
public final static String AOLE_ACTION_DISABLE_SLIDE = "aole_disable_slide";
|
|
/*开机自启应用*/
|
|
public final static String AOLE_ACTION_APP_POWER_ON = "aole_app_power_on";
|
|
/*禁止联网应用*/
|
|
public final static String AOLE_ACTION_NETWORK_DISALLOW = "aole_network_disallow";
|
|
/*允许联网应用*/
|
|
public final static String AOLE_ACTION_NETWORK_ALLOW = "aole_network_allow";
|
|
|
|
|
|
/*存储卡管控*/
|
|
public final static String AOLE_ACTION_SDCARD_FORBID_ON = "aole_sdcard_forbid_on";
|
|
/*开发者选项管控*/
|
|
public final static String AOLE_ACTION_DEVELOPER_OPTIONS = "aole_Developeroptions";
|
|
/*显示导航栏*/
|
|
public final static String AOLE_ACTION_SHOW_NAVIGATION_BAR = "aole_show_NavigationBar";
|
|
/*隐藏导航栏*/
|
|
public final static String AOLE_ACTION_HIDE_NAVIGATION_BAR = "aole_hide_NavigationBar";
|
|
/*显示状态栏*/
|
|
public final static String AOLE_ACTION_SHOW_STATUS_BAR = "aole_show_statusBar";
|
|
/*隐藏状态栏*/
|
|
public final static String AOLE_ACTION_HIDE_STATUS_BAR = "aole_hide_statusBar";
|
|
/*热点*/
|
|
public final static String AOLE_ACTION_HOTSPOT_FORBID_ON = "aole_hotspot_forbid_on";
|
|
/*蓝牙总开关*/
|
|
public final static String AOLE_ACTION_BHT_FORBID_ON = "aole_bht_forbid_on";
|
|
/*蓝牙传输开关*/
|
|
public final static String AOLE_ACTION_BT_FORBID_ON = "aole_bt_forbid_on";
|
|
/*蓝牙音频开关*/
|
|
public final static String AOLE_ACTION_BHTVIDEO_FORBID_ON = "aole_bhtvideo_forbid_on";
|
|
/*电话白名单开关*/
|
|
public final static String AOLE_ACTION_WHITE_LIST_ON = "aole_white_list_on";
|
|
/*电话白名单列表*/
|
|
public final static String AOLE_ACTION_WHITE_LIST_ARRAY = "aole_white_list_Array";
|
|
/*恢复出厂设置开关*/
|
|
public final static String AOLE_ACTION_RESTORE_FORBID_ON = "aole_restore_forbid_on";
|
|
/*WiFi白名单*/
|
|
public final static String AOLE_ACTION_AOLE_SSID_WHITE_LIST = "aole_ssid_whiteList";
|
|
|
|
}
|