Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Firebase iOS to v8.8.0 #133

Merged
merged 1 commit into from
Dec 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.0
version: 7.0.0
apiversion: 2
architectures: arm64 x86_64
description: titanium-firebase-cloud-messaging
Expand Down
32 changes: 16 additions & 16 deletions ios/platform/FirebaseMessaging.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>FirebaseMessaging.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -35,47 +35,47 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>FirebaseMessaging.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>tvos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>FirebaseMessaging.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>FirebaseMessaging.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>macos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>FirebaseMessaging.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -84,9 +84,9 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NS_SWIFT_NAME(MessagingDelegate)
* Firebase Messaging lets you reliably deliver messages at no cost.
*
* To send or receive messages, the app must get a
* registration token from FIRInstanceID. This token authorizes an
* registration token. This token authorizes an
* app server to send messages to an app instance.
*
* In order to receive FIRMessaging messages, declare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
* limitations under the License.
*/

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 || \
__MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_14
#import <Foundation/Foundation.h>

@class UNMutableNotificationContent, UNNotificationContent;

#if __has_include(<UserNotifications/UserNotifications.h>)
#import <UserNotifications/UserNotifications.h>
#endif

Expand All @@ -34,6 +37,14 @@ __OSX_AVAILABLE(10.14) @interface FIRMessagingExtensionHelper : NSObject
- (void)populateNotificationContent:(UNMutableNotificationContent *)content
withContentHandler:(void (^)(UNNotificationContent *_Nonnull))contentHandler;

/// Exports delivery metrics to BigQuery. Call this API to enable logging delivery of alert
/// notification or background notification and export to BigQuery.
/// If you log alert notifications, enable Notification Service Extension and calls this API
/// under `UNNotificationServiceExtension didReceiveNotificationRequest: withContentHandler:`.
/// If you log background notifications, call the API under `UIApplicationDelegate
/// application:didReceiveRemoteNotification:fetchCompletionHandler:`.
- (void)exportDeliveryMetricsToBigQueryWithMessageInfo:(NSDictionary *)info;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleVersion</key>
<string>7.11.0</string>
<string>8.8.0</string>
<key>DTSDKName</key>
<string>iphonesimulator11.2</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NS_SWIFT_NAME(MessagingDelegate)
* Firebase Messaging lets you reliably deliver messages at no cost.
*
* To send or receive messages, the app must get a
* registration token from FIRInstanceID. This token authorizes an
* registration token. This token authorizes an
* app server to send messages to an app instance.
*
* In order to receive FIRMessaging messages, declare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
* limitations under the License.
*/

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 || \
__MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_14
#import <Foundation/Foundation.h>

@class UNMutableNotificationContent, UNNotificationContent;

#if __has_include(<UserNotifications/UserNotifications.h>)
#import <UserNotifications/UserNotifications.h>
#endif

Expand All @@ -34,6 +37,14 @@ __OSX_AVAILABLE(10.14) @interface FIRMessagingExtensionHelper : NSObject
- (void)populateNotificationContent:(UNMutableNotificationContent *)content
withContentHandler:(void (^)(UNNotificationContent *_Nonnull))contentHandler;

/// Exports delivery metrics to BigQuery. Call this API to enable logging delivery of alert
/// notification or background notification and export to BigQuery.
/// If you log alert notifications, enable Notification Service Extension and calls this API
/// under `UNNotificationServiceExtension didReceiveNotificationRequest: withContentHandler:`.
/// If you log background notifications, call the API under `UIApplicationDelegate
/// application:didReceiveRemoteNotification:fetchCompletionHandler:`.
- (void)exportDeliveryMetricsToBigQueryWithMessageInfo:(NSDictionary *)info;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleVersion</key>
<string>7.11.0</string>
<string>8.8.0</string>
<key>DTSDKName</key>
<string>iphonesimulator11.2</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NS_SWIFT_NAME(MessagingDelegate)
* Firebase Messaging lets you reliably deliver messages at no cost.
*
* To send or receive messages, the app must get a
* registration token from FIRInstanceID. This token authorizes an
* registration token. This token authorizes an
* app server to send messages to an app instance.
*
* In order to receive FIRMessaging messages, declare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
* limitations under the License.
*/

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 || \
__MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_14
#import <Foundation/Foundation.h>

@class UNMutableNotificationContent, UNNotificationContent;

#if __has_include(<UserNotifications/UserNotifications.h>)
#import <UserNotifications/UserNotifications.h>
#endif

Expand All @@ -34,6 +37,14 @@ __OSX_AVAILABLE(10.14) @interface FIRMessagingExtensionHelper : NSObject
- (void)populateNotificationContent:(UNMutableNotificationContent *)content
withContentHandler:(void (^)(UNNotificationContent *_Nonnull))contentHandler;

/// Exports delivery metrics to BigQuery. Call this API to enable logging delivery of alert
/// notification or background notification and export to BigQuery.
/// If you log alert notifications, enable Notification Service Extension and calls this API
/// under `UNNotificationServiceExtension didReceiveNotificationRequest: withContentHandler:`.
/// If you log background notifications, call the API under `UIApplicationDelegate
/// application:didReceiveRemoteNotification:fetchCompletionHandler:`.
- (void)exportDeliveryMetricsToBigQueryWithMessageInfo:(NSDictionary *)info;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleVersion</key>
<string>7.11.0</string>
<string>8.8.0</string>
<key>DTSDKName</key>
<string>iphonesimulator11.2</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NS_SWIFT_NAME(MessagingDelegate)
* Firebase Messaging lets you reliably deliver messages at no cost.
*
* To send or receive messages, the app must get a
* registration token from FIRInstanceID. This token authorizes an
* registration token. This token authorizes an
* app server to send messages to an app instance.
*
* In order to receive FIRMessaging messages, declare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
* limitations under the License.
*/

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 || \
__MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_14
#import <Foundation/Foundation.h>

@class UNMutableNotificationContent, UNNotificationContent;

#if __has_include(<UserNotifications/UserNotifications.h>)
#import <UserNotifications/UserNotifications.h>
#endif

Expand All @@ -34,6 +37,14 @@ __OSX_AVAILABLE(10.14) @interface FIRMessagingExtensionHelper : NSObject
- (void)populateNotificationContent:(UNMutableNotificationContent *)content
withContentHandler:(void (^)(UNNotificationContent *_Nonnull))contentHandler;

/// Exports delivery metrics to BigQuery. Call this API to enable logging delivery of alert
/// notification or background notification and export to BigQuery.
/// If you log alert notifications, enable Notification Service Extension and calls this API
/// under `UNNotificationServiceExtension didReceiveNotificationRequest: withContentHandler:`.
/// If you log background notifications, call the API under `UIApplicationDelegate
/// application:didReceiveRemoteNotification:fetchCompletionHandler:`.
- (void)exportDeliveryMetricsToBigQueryWithMessageInfo:(NSDictionary *)info;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleVersion</key>
<string>7.11.0</string>
<string>8.8.0</string>
<key>DTSDKName</key>
<string>iphonesimulator11.2</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NS_SWIFT_NAME(MessagingDelegate)
* Firebase Messaging lets you reliably deliver messages at no cost.
*
* To send or receive messages, the app must get a
* registration token from FIRInstanceID. This token authorizes an
* registration token. This token authorizes an
* app server to send messages to an app instance.
*
* In order to receive FIRMessaging messages, declare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
* limitations under the License.
*/

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 || \
__MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_14
#import <Foundation/Foundation.h>

@class UNMutableNotificationContent, UNNotificationContent;

#if __has_include(<UserNotifications/UserNotifications.h>)
#import <UserNotifications/UserNotifications.h>
#endif

Expand All @@ -34,6 +37,14 @@ __OSX_AVAILABLE(10.14) @interface FIRMessagingExtensionHelper : NSObject
- (void)populateNotificationContent:(UNMutableNotificationContent *)content
withContentHandler:(void (^)(UNNotificationContent *_Nonnull))contentHandler;

/// Exports delivery metrics to BigQuery. Call this API to enable logging delivery of alert
/// notification or background notification and export to BigQuery.
/// If you log alert notifications, enable Notification Service Extension and calls this API
/// under `UNNotificationServiceExtension didReceiveNotificationRequest: withContentHandler:`.
/// If you log background notifications, call the API under `UIApplicationDelegate
/// application:didReceiveRemoteNotification:fetchCompletionHandler:`.
- (void)exportDeliveryMetricsToBigQueryWithMessageInfo:(NSDictionary *)info;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleVersion</key>
<string>7.11.0</string>
<string>8.8.0</string>
<key>DTSDKName</key>
<string>iphonesimulator11.2</string>
</dict>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ NS_SWIFT_NAME(MessagingDelegate)
* Firebase Messaging lets you reliably deliver messages at no cost.
*
* To send or receive messages, the app must get a
* registration token from FIRInstanceID. This token authorizes an
* registration token. This token authorizes an
* app server to send messages to an app instance.
*
* In order to receive FIRMessaging messages, declare
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
* limitations under the License.
*/

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 || \
__MAC_OS_X_VERSION_MAX_ALLOWED >= __MAC_10_14
#import <Foundation/Foundation.h>

@class UNMutableNotificationContent, UNNotificationContent;

#if __has_include(<UserNotifications/UserNotifications.h>)
#import <UserNotifications/UserNotifications.h>
#endif

Expand All @@ -34,6 +37,14 @@ __OSX_AVAILABLE(10.14) @interface FIRMessagingExtensionHelper : NSObject
- (void)populateNotificationContent:(UNMutableNotificationContent *)content
withContentHandler:(void (^)(UNNotificationContent *_Nonnull))contentHandler;

/// Exports delivery metrics to BigQuery. Call this API to enable logging delivery of alert
/// notification or background notification and export to BigQuery.
/// If you log alert notifications, enable Notification Service Extension and calls this API
/// under `UNNotificationServiceExtension didReceiveNotificationRequest: withContentHandler:`.
/// If you log background notifications, call the API under `UIApplicationDelegate
/// application:didReceiveRemoteNotification:fetchCompletionHandler:`.
- (void)exportDeliveryMetricsToBigQueryWithMessageInfo:(NSDictionary *)info;

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleVersion</key>
<string>7.11.0</string>
<string>8.8.0</string>
<key>DTSDKName</key>
<string>iphonesimulator11.2</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion ios/titanium.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// OF YOUR TITANIUM SDK YOU'RE BUILDING FOR
//
//
TITANIUM_SDK_VERSION = 9.3.2.GA
TITANIUM_SDK_VERSION = 10.1.0.GA

//
// THESE SHOULD BE OK GENERALLY AS-IS
Expand Down