package com.hdl.sdk.sourceos.bind;
|
|
|
import static java.lang.annotation.RetentionPolicy.SOURCE;
|
|
import androidx.annotation.StringDef;
|
|
import java.lang.annotation.Retention;
|
|
/**
|
* Created by Tong on 2021/11/8.
|
*/
|
@StringDef({
|
EventType.TEST_TYPE,
|
EventType.ON_PLUS_BINDING_TYPE
|
|
})
|
@Retention(SOURCE)
|
public @interface EventType {
|
|
//测试数据
|
String TEST_TYPE = "event_test_type";
|
|
//on+绑定成功
|
String ON_PLUS_BINDING_TYPE = "event_on_plus_binding_type";
|
|
}
|