Interface IAppInformation
A collection of common application details.
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public interface IAppInformation
Methods
GetPlatform()
The platform the application is currently running on. This would generally be something like "android" or "ios".
Declaration
string GetPlatform()
Returns
Type | Description |
---|---|
String |
GetVersion()
The applications current version.
Declaration
string GetVersion()
Returns
Type | Description |
---|---|
String |
IsAndroid()
Indicates that the application is running on Android
Declaration
bool IsAndroid()
Returns
Type | Description |
---|---|
Boolean | true when on android |
IsIOS()
Indicates that the application is running on iOS
Declaration
bool IsIOS()
Returns
Type | Description |
---|---|
Boolean | true when on iOS |