1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import <Foundation/Foundation.h> 4 5 // Keep in sync with ApplicationReleaseType in JS 6 typedef NS_ENUM(NSInteger, EXAppReleaseType) { 7 EXAppReleaseTypeUnknown, 8 EXAppReleaseSimulator, 9 EXAppReleaseEnterprise, 10 EXAppReleaseDev, 11 EXAppReleaseAdHoc, 12 EXAppReleaseAppStore 13 }; 14 15 @interface EXProvisioningProfile : NSObject 16 17 + (nonnull instancetype)mainProvisioningProfile; 18 19 - (EXAppReleaseType)appReleaseType; 20 - (nullable NSString *)notificationServiceEnvironment; 21 22 @end 23