Files
CubeAoleyunSN/app/src/main/java/com/aoleyun/sn/comm/JGYActions.java
Godfather 62de0cac3f version:3.5
fix:第一次开机不弹窗,修复重复请求时不抛出onerror异常,修复email意外弹出
update:
2022-03-09 16:14:19 +08:00

36 lines
1.1 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.aoleyun.sn.comm;
public class JGYActions {
/*锁定解锁设备 后台1是锁定底层0是锁定*/
public final static String ACTION_QCH_UNLOCK_IPAD = "qch_unlock_ipad";
/*后台锁定*/
public final static int NET_CODE_LOCKED = 1;
/*后台解锁*/
public final static int NET_CODE_UNLOCKED = 0;
/*底层锁定*/
public final static int FRAME_CODE_LOCKED = 0;
/*底层解锁*/
public final static int FRAME_CODE_UNLOCKED = 1;
/*
* 需要写到底层的数据
* */
/*应用管理-允许联网*/
public final static String ACTION_HRRECEIVER_JGY = "qch_jgy_network_allow";
/*应用管理-禁止联网*/
public final static String ACTION_HRRECEIVER_JGY_DIS = "qch_jgy_network_disallow";
/*状态栏*/
public final static String ACTION_STATUSBAR_STATUS = "jgy_statusbar_status";
/*
* 应用内部的数据
* */
//后台上传所有应用包名 将添加到桌面
// TODO: 2021/10/13
public final static String ACTION_JGY_SHORTCUTLIST = "only_jgy_shortcut_list";
}