应用程序在开发时,会有一些功能只在调试阶段启用,应用发布时不再启动的功能,开发时根据调试环境启用功能,这时判断程序是否在调试模式是变得很有用了。
/** * 判断应用程序是否处于调式模式 * @param context * @return */ public static boolean isDebugMode(Context context){ PackageManager pm = context.getPackageManager(); try{ ApplicationInfo info = pm.getApplicationInfo(context.getPackageName(), 0); return (info.flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0; }catch (PackageManager.NameNotFoundException e){ // } return true; }
时间: 2024-10-15 02:55:53