expo-application
Version:
A universal module that gets native application information such as its ID, app name, and build version at runtime
19 lines (17 loc) • 467 B
text/typescript
// @docsMissing
/**
* @platform ios
*/
export enum ApplicationReleaseType {
UNKNOWN = 0,
SIMULATOR = 1,
ENTERPRISE = 2,
DEVELOPMENT = 3,
AD_HOC = 4,
APP_STORE = 5,
}
/**
* Maps to the [`aps-environment`](https://developer.apple.com/documentation/bundleresources/entitlements/aps-environment) key in the native target's registered entitlements.
* @platform ios
*/
export type PushNotificationServiceEnvironment = 'development' | 'production' | null;