public final class

Config

extends Object
java.lang.Object
   ↳ android.util.Config

Class Overview

Build configuration. The constants in this class vary depending on release vs. debug build. This is the configuration for release builds.

Summary

Constants
boolean DEBUG Is this a debug build?
boolean LOGD Are DEBUG log messages enabled?
boolean LOGV Are VERBOSE log messages enabled?
boolean PROFILE Is profiling enabled?
boolean RELEASE Is this a release build?
Public Constructors
Config()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final boolean DEBUG

Is this a debug build?

Constant Value: false

public static final boolean LOGD

Are DEBUG log messages enabled?

Constant Value: true

public static final boolean LOGV

Are VERBOSE log messages enabled?

Constant Value: false

public static final boolean PROFILE

Is profiling enabled?

Constant Value: false

public static final boolean RELEASE

Is this a release build?

Constant Value: true

Public Constructors

public Config ()