| package com.secondworld.universalsdk; | 
|   | 
| /** | 
|  * Created by Administrator on 2018/7/18 0018. | 
|  */ | 
|   | 
| public class CodeU2A | 
| { | 
|     /** | 
|      * 执行资源拷贝 | 
|      */ | 
|     public static final int AssetCopy = 0; | 
|     /** | 
|      * 执行开始电量改变,充电状态改变监听 | 
|      */ | 
|     public static final int BatteryListenStart = 1; | 
|     /** | 
|      * 执行停止电量改变,充电状态改变监听 | 
|      */ | 
|     public static final int BatteryListenStop = 2; | 
|     /** | 
|      * 获取唯一识别码 | 
|      */ | 
|     public static final int UniqueID = 3; | 
|     /** | 
|      * 申请在AndroidManifest文件中 | 
|      */ | 
|     public static final int RequestManifestPermissions = 4; | 
|     /** | 
|      * 单独动态申请某一个权限 | 
|      */ | 
|     public static final int RequestPermission = 5; | 
|     /** | 
|      * 重启应用 | 
|      */ | 
|     public static final int RestartApp = 6; | 
|     /** | 
|      * 拷贝文本信息 | 
|      */ | 
|     public static final int CopyContent = 7; | 
|     /** | 
|      * 打开网址 | 
|      */ | 
|     public static final int OpenWebView = 8; | 
|     /** | 
|      * SDK初始化, 完全自动初始化的流程, 完成必要逻辑后再回调回去 | 
|      */ | 
|     public static final int Init = 9; | 
|     /** | 
|      * 安装应用 | 
|      */ | 
|     public static final int InstallAPK = 10; | 
|     /** | 
|      * 外部存储根目录地址 | 
|      */ | 
|     public static final int ExteneralStorage = 11; | 
|   | 
|     public static final int CopyOneAsset = 12; | 
|     /** | 
|      * -------------------------------------------------------------------------------------------- | 
|      * 以下为各自项目SDK相关 | 
|      * -------------------------------------------------------------------------------------------- | 
|      */ | 
|     /** | 
|      * 自由sdk相关 | 
|      * */ | 
|     public static final int FreePlatformInit = 100; | 
|     public static final int FreePlatformLogin = 101; | 
|     public static final int FreePlatformLogout = 102; | 
|     public static final int FreePlatformSwitchAccount = 103; | 
|     public static final int FreePlatformPay = 104; | 
|     public static final int PayFinished = 105; | 
|     public static final int CreateRole = 106; | 
|     public static final int RoleLogin = 107; | 
|     public static final int RoleLevelUp = 108; | 
|     public static final int TencentLogin = 109; | 
|     /** | 
|      * 极光推送 | 
|      * */ | 
|     public static final int JPushAddLocalMessage = 200; | 
|     public static final int JPushRemoveLocalMessage = 201; | 
|     /** | 
|      * ClientPackage向sdk发送分包id | 
|      */ | 
|     public static final int ClientPackage = 400; | 
|     public static final int SendRegistEvent = 500; | 
| } |