Package com.gemalto.mfs.mwsdk
Class SDKEnv
- java.lang.Object
-
- com.gemalto.mfs.mwsdk.SDKEnv
-
public final class SDKEnv extends java.lang.Object
Contains build-time environment variables. such as product version, release build and whether the build is DEBUG or PRODUCTION.
-
-
Field Summary
Fields Modifier and Type Field Description static boolean
DEBUG
Indicates the current SDK build is the DEBUG version.static java.lang.String
SDK_BUILD_NUMBER
static java.lang.String
SDK_VERSION
SDK version, that is a concatenation of:
- product version.
- release version.
- (non-official) release qualifier (e.g.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
displaySDKVersion()
Prints current SDK Version in DEBUG version
-
-
-
Field Detail
-
DEBUG
public static final boolean DEBUG
Indicates the current SDK build is the DEBUG version.- See Also:
- Constant Field Values
-
SDK_VERSION
public static final java.lang.String SDK_VERSION
SDK version, that is a concatenation of:
- product version.
- release version.
- (non-official) release qualifier (e.g. alpha, beta).
- (non-production) release build configuration (e.g. debug).- See Also:
- Constant Field Values
-
SDK_BUILD_NUMBER
public static final java.lang.String SDK_BUILD_NUMBER
- See Also:
- Constant Field Values
-
-