namespace Ubisoft.Hotel.Device
{
public struct AdvertisingInfo
{
public bool RequestSuccess { get; set; }
public string AdvertisingId { get; set; }
public bool TrackingEnabled { get; set; }
}
public interface INativeDevice
{
long GetFreeDiskSpace(string path);
AdvertisingInfo GetAdvertisingId();
void OpenAppInStore();
void OpenAppInStore(string appId);
///
/// Return whether or not the apk was installed from a legit installer.
///
///
bool IsLegitInstallation();
}
}