Package com.secoo.coobox.library.util

Functions

isAppDebuggable
Link copied to clipboard
fun Context.isAppDebuggable(): Boolean
app是否可以调试
isProbablyAnEmulator
Link copied to clipboard
fun isProbablyAnEmulator(): Boolean
是否为可疑的模拟器
isRooted
Link copied to clipboard
fun Context?.isRooted(): Boolean
判断当前设备是否已经获取 Root权限
json2Obj
Link copied to clipboard
fun <T> json2Obj(json: String?, classOfT: Class<T>?): T?
将 json 字符串转换成 对象 如果转换正常,则返回对应类型的实例,否则为 null
toJson
Link copied to clipboard
fun Any?.toJson(): String?
将任意对象转成json字符串形式标识,如果有异常或者对象为null,返回null

Properties

gson
Link copied to clipboard
val gson: Gson
一个公用的 gson 对象,避免重复创建的开销问题