Interface IEdsSdkVersionInfo
-
public interface IEdsSdkVersionInfo
Data container class for SDK build and state values. SeeEdsClientSdkFactory.getVersionInfo()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getBuildTimestamp()
Epoch milliseconds timestamp created at SDK build time.long
getVersionCode()
Get SDK version codejava.lang.String
getVersionName()
Get SDK version nameboolean
isDebug()
Is SDK library compiled with Android Debug flagboolean
isDebugLoggingEnabled()
Is Debug logging currently enabled.boolean
isVerboseLogging()
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
-
-