摘要:
查看Android源码版本 拉一套新源码时,往往需要知道Android源码是哪个版本的,如何查看Android源码的具体版本?介绍下常用的两个方法: 1.Android源码已全编译过,在build.prop(out/XXX/system/build.prop)里面查看ro.build.version 阅读全文
摘要:
/** * Returns whether the SDK is KitKat or later */ public static boolean isKitKatOrLater() { return Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY 阅读全文