Created
October 29, 2014 12:24
-
-
Save interchen/7830b91caf9ce4661227 to your computer and use it in GitHub Desktop.
判断是debug环境还是release环境
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 判断是否是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