f0d8b1ed7e51295427b337c8ba52656d8e220fa5.svn-base 395 B

12345678910111213141516
  1. package eVVM.apk.helper;
  2. import android.content.Context;
  3. import android.content.pm.ApplicationInfo;
  4. public final class DebugUtils {
  5. /**
  6. * 当前是否为Debug模式
  7. */
  8. public static boolean isDebug(Context context) {
  9. return context.getApplicationInfo() != null
  10. && (context.getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
  11. }
  12. }