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.

Summary

Constants
boolean DEBUG If this is a debug build, this field will be true.
boolean LOGD Always true.
boolean LOGV Always false.
boolean PROFILE Always false.
boolean RELEASE Always the inverse of DEBUG.
Public Constructors
Config()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final boolean DEBUG

Since: API Level 1

If this is a debug build, this field will be true.

public static final boolean LOGD

Since: API Level 1

Always true.

Constant Value: true

public static final boolean LOGV

Since: API Level 1

Always false.

Constant Value: false

public static final boolean PROFILE

Since: API Level 1

Always false.

Constant Value: false

public static final boolean RELEASE

Since: API Level 1

Always the inverse of DEBUG.

Public Constructors

public Config ()

Since: API Level 1