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 This constant is deprecated. Always true.
boolean LOGV This constant is deprecated. Always false.
boolean PROFILE This constant is deprecated. Always false.
boolean RELEASE This constant is deprecated. Use DEBUG instead.
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

This constant is deprecated.
Always true.

Constant Value: true

public static final boolean LOGV

Since: API Level 1

This constant is deprecated.
Always false.

Constant Value: false

public static final boolean PROFILE

Since: API Level 1

This constant is deprecated.
Always false.

Constant Value: false

public static final boolean RELEASE

Since: API Level 1

This constant is deprecated.
Use DEBUG instead.

Public Constructors

public Config ()

Since: API Level 1