hch
昨天 9b0c5d57c355718c0c5d0a5c493b30426188573a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.secondworld.sdk.utils;
 
/**
 * Android 调用unity
 */
 
public interface CodeA2U {
    /**
     * 资源拷贝完成
     */
    int AssetCopyFinished = 0;
    /**
     * 电量改变
     */
    int BatteryLevel = 1;
    /**
     * 充电状态改变
     */
    int BatteryCharging = 2;
    /**
     * 回调sdk逻辑完毕
     */
    int SdkInitComplete = 3;
    /**
     * 回调android设备信息
     */
    int DeviceInfo = 4;
    /**
     * 回调推送的独立id
     */
    int PushClientID = 5;
    /**
     * 回调外部存储根目录地址
     */
    int ExternalStorage = 6;
    /**
     * 触发了退出游戏逻辑, 打开二次确认界面
     */
    int ExitGame = 7;
    /**
     * 权限申请结果
     */
    int PermissionCallBack = 8;
 
    // 自由sdk_code
    int PlatformInitOk = 100;
    int PlatformInitFail = 101;
    int PlatformLoginOk = 102;
    int PlatformLoginFail = 103;
    int PlatformLoginCancel = 104;
    int PlatformLogoutOk = 105;
    int PlatformLogoutFail = 106;
    int PlatformSwitchAccountOk = 107;
    int PlatformPayOk = 108;
    int PlatformPayFail = 109;
    int PlatformPayCancel = 110;
    int PlatformRegisterOk = 111;
    int ShareState = 112;
    int ReviewState = 113;
    int OrderInfoCallBack = 114;
    int GotoShopOK = 115;
    int GotoFBOK = 116;
    int AdCallBack = 117;
}