GULAppEnvironmentUtil.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright 2017 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. @interface GULAppEnvironmentUtil : NSObject
  18. /// Indicates whether the app is from Apple Store or not. Returns NO if the app is on simulator,
  19. /// development environment or sideloaded.
  20. + (BOOL)isFromAppStore;
  21. /// Indicates whether the app is a Testflight app. Returns YES if the app has sandbox receipt.
  22. /// Returns NO otherwise.
  23. + (BOOL)isAppStoreReceiptSandbox;
  24. /// Indicates whether the app is on simulator or not at runtime depending on the device
  25. /// architecture.
  26. + (BOOL)isSimulator;
  27. /// The current device model. Returns an empty string if device model cannot be retrieved.
  28. + (NSString *)deviceModel;
  29. /// The current operating system version. Returns an empty string if the system version cannot be
  30. /// retrieved.
  31. + (NSString *)systemVersion;
  32. /// Indicates whether it is running inside an extension or an app.
  33. + (BOOL)isAppExtension;
  34. /// @return Returns @YES when is run on iOS version greater or equal to 7.0
  35. + (BOOL)isIOS7OrHigher;
  36. @end