| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * Global constants to be put here.
- *
- */
- #import <Foundation/Foundation.h>
- #ifndef _FIRMessaging_CONSTANTS_H
- #define _FIRMessaging_CONSTANTS_H
- FOUNDATION_EXPORT NSString *const kFIRMessagingFromKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingMessageIDKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingMessageAPNSContentAvailableKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingMessageSyncMessageTTLKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingMessageLinkKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingSenderID;
- FOUNDATION_EXPORT NSString *const kFIRMessagingFID;
- FOUNDATION_EXPORT NSString *const kFIRMessagingAnalyticsComposerIdentifier;
- FOUNDATION_EXPORT NSString *const kFIRMessagingAnalyticsMessageLabel;
- FOUNDATION_EXPORT NSString *const kFIRMessagingAnalyticsComposerLabel;
- FOUNDATION_EXPORT NSString *const kFIRMessagingRemoteNotificationsProxyEnabledInfoPlistKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingSubDirectoryName;
- #pragma mark - Notifications
- FOUNDATION_EXPORT NSString *const kFIRMessagingCheckinFetchedNotification;
- FOUNDATION_EXPORT NSString *const kFIRMessagingAPNSTokenNotification;
- FOUNDATION_EXPORT NSString *const kFIRMessagingDefaultGCMTokenFailNotification;
- FOUNDATION_EXPORT NSString *const kFIRMessagingRegistrationTokenRefreshNotification;
- FOUNDATION_EXPORT const int kFIRMessagingSendTtlDefault; // 24 hours
- /**
- * Value included in a structured response indicating an identity reset.
- */
- FOUNDATION_EXPORT NSString *const kFIRMessaging_CMD_RST;
- #pragma mark - Miscellaneous
- /// The scope used to save the IID "*" scope token. This is used for saving the
- /// IID auth token that we receive from the server. This feature was never
- /// implemented on the server side.
- FOUNDATION_EXPORT NSString *const kFIRMessagingAllScopeIdentifier;
- /// The scope used to save the IID "*" scope token.
- FOUNDATION_EXPORT NSString *const kFIRMessagingDefaultTokenScope;
- /// Subdirectory in search path directory to store InstanceID preferences.
- FOUNDATION_EXPORT NSString *const kFIRMessagingInstanceIDSubDirectoryName;
- /// The key for APNS token in options dictionary.
- FOUNDATION_EXPORT NSString *const kFIRMessagingTokenOptionsAPNSKey;
- /// The key for APNS token environment type in options dictionary.
- FOUNDATION_EXPORT NSString *const kFIRMessagingTokenOptionsAPNSIsSandboxKey;
- /// The key for GMP AppID sent in registration requests.
- FOUNDATION_EXPORT NSString *const kFIRMessagingTokenOptionsFirebaseAppIDKey;
- FOUNDATION_EXPORT NSString *const kFIRMessagingAPNSTokenType;
- /// The key to enable auto-register by swizzling AppDelegate's methods.
- FOUNDATION_EXPORT NSString *const kFIRMessagingAppDelegateProxyEnabledInfoPlistKey;
- /// Error code for missing entitlements in Keychain. iOS Keychain error
- /// https://forums.developer.apple.com/thread/4743
- FOUNDATION_EXPORT const int kFIRMessagingSecMissingEntitlementErrorCode;
- /// The key for InstallationID or InstanceID in token request.
- FOUNDATION_EXPORT NSString *const kFIRMessagingParamInstanceID;
- #endif
|