-
Notifications
You must be signed in to change notification settings - Fork 13
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
chore: add client info for react native user agent on ios #345
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ target 'SampleApp' do | |
flags = get_default_flags() | ||
|
||
# TODO: Remove this once iOS Native SDK is released and revert to original code | ||
install_non_production_ios_sdk_git_branch(branch_name: 'feature/react-native-cdp', is_app_extension: false, push_service: "apn") | ||
install_non_production_ios_sdk_git_branch(branch_name: 'rehan/rn-ios-user-agent', is_app_extension: false, push_service: "apn") | ||
# pod 'customerio-reactnative/apn', :path => '../node_modules/customerio-reactnative' | ||
# install_non_production_ios_sdk_local_path(local_path: '~/code/customerio-ios/', is_app_extension: false, push_service: "apn") | ||
# install_non_production_ios_sdk_git_branch(branch_name: 'main', is_app_extension: false, push_service: "apn") | ||
|
@@ -51,9 +51,7 @@ target 'SampleApp' do | |
end | ||
|
||
target 'NotificationServiceExtension' do | ||
# TODO: Remove this once iOS Native SDK is released and revert to original code | ||
install_non_production_ios_sdk_git_branch(branch_name: 'feature/react-native-cdp', is_app_extension: true, push_service: "apn") | ||
# pod 'customerio-reactnative-richpush/apn', :path => '../node_modules/customerio-reactnative' | ||
pod 'customerio-reactnative-richpush/apn', :path => '../node_modules/customerio-reactnative' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since pods are already installed, I think we can revert this to original implementation. This should give us more confidence in the changes. |
||
# install_non_production_ios_sdk_local_path(local_path: '~/code/customerio-ios/', is_app_extension: true, push_service: "apn") | ||
# install_non_production_ios_sdk_git_branch(branch_name: 'main', is_app_extension: true, push_service: "apn") | ||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ target 'FCMSampleApp' do | |
) | ||
|
||
# TODO: Remove this once iOS Native SDK is released and revert to original code | ||
install_non_production_ios_sdk_git_branch(branch_name: 'feature/react-native-cdp', is_app_extension: false, push_service: "fcm") | ||
install_non_production_ios_sdk_git_branch(branch_name: 'rehan/rn-ios-user-agent', is_app_extension: false, push_service: "fcm") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO: Revert this to feature branch once iOS PR is merged |
||
# pod 'customerio-reactnative/fcm', :path => '../node_modules/customerio-reactnative' | ||
# install_non_production_ios_sdk_local_path(local_path: '~/code/customerio-ios/', is_app_extension: false, push_service: "fcm") | ||
# install_non_production_ios_sdk_git_branch(branch_name: 'levi/v2-multiple-push-handlers', is_app_extension: false, push_service: "fcm") | ||
|
@@ -63,9 +63,7 @@ target 'FCMSampleApp' do | |
end | ||
|
||
target 'NotificationServiceExtension' do | ||
# TODO: Remove this once iOS Native SDK is released and revert to original code | ||
install_non_production_ios_sdk_git_branch(branch_name: 'feature/react-native-cdp', is_app_extension: true, push_service: "fcm") | ||
# pod 'customerio-reactnative-richpush/fcm', :path => '../node_modules/customerio-reactnative' | ||
pod 'customerio-reactnative-richpush/fcm', :path => '../node_modules/customerio-reactnative' | ||
# install_non_production_ios_sdk_local_path(local_path: '~/code/customerio-ios/', is_app_extension: true, push_service: "fcm") | ||
# install_non_production_ios_sdk_git_branch(branch_name: 'levi/v2-multiple-push-handlers', is_app_extension: true, push_service: "fcm") | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO: Revert this to feature branch once iOS PR is merged