Interface IEdsSdkVersionInfo
-
public interface IEdsSdkVersionInfoData container class for SDK build and state values. SeeEdsClientSdkFactory.getVersionInfo()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetBuildTimestamp()Epoch milliseconds timestamp created at SDK build time.longgetVersionCode()Get SDK version codejava.lang.StringgetVersionName()Get SDK version namebooleanisDebug()Is SDK library compiled with Android Debug flagbooleanisDebugLoggingEnabled()Is Debug logging currently enabled.booleanisVerboseLogging()Was SDK build created with verbose logging enabled (developer/internal builds only)
-
-
-
Method Detail
-
getVersionName
java.lang.String getVersionName()
Get SDK version name- Returns:
- SDK version name
-
getVersionCode
long getVersionCode()
Get SDK version code- Returns:
- SDK version code
-
getBuildTimestamp
long getBuildTimestamp()
Epoch milliseconds timestamp created at SDK build time.- Returns:
- build timestamp
-
isDebug
boolean isDebug()
Is SDK library compiled with Android Debug flag- Returns:
- whether SDK library was compiled with Android debug option
-
isVerboseLogging
boolean isVerboseLogging()
Was SDK build created with verbose logging enabled (developer/internal builds only)- Returns:
- true if build was created with verbose/internal logging enabled, otherwise false.
-
isDebugLoggingEnabled
boolean isDebugLoggingEnabled()
Is Debug logging currently enabled. SeeEdsClientSdkFactory.setDebugLogging(boolean)- Returns:
- whether debug logging is currently enabled
-
-