判断Android 当前版本是否为debug版本

public static boolean isDebugVersion(Context context) {
   try {
      ApplicationInfo info = context.getApplicationInfo();
      return (info.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
   } catch (Exception e) {
      e.printStackTrace();
   }
   return false;
}
 
原文地址:https://www.cnblogs.com/netcorner/p/9128136.html