Skip to content

Instantly share code, notes, and snippets.

@interchen
Created October 29, 2014 12:24
Show Gist options
  • Save interchen/7830b91caf9ce4661227 to your computer and use it in GitHub Desktop.
Save interchen/7830b91caf9ce4661227 to your computer and use it in GitHub Desktop.
判断是debug环境还是release环境
/**
* 判断是否是debug环境
* @param context 上下文
* @return true: debug, false: release
*/
public static boolean isDebugMode(Context context) {
return (context.getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE) != 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment