-
Notifications
You must be signed in to change notification settings - Fork 1.6k
iOS : In AppDelegate+FirebasePlugin.m add the variable tap in the method didReceiveRemoteNotification() #1104
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
Open
papattes
wants to merge
812
commits into
arnesson:master
Choose a base branch
from
dpa99c:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dpa99c
added a commit
to dpa99c/cordova-plugin-firebasex
that referenced
this pull request
Aug 30, 2019
…le app is running in background. * Based on arnesson#1104 * Resolves #96
21bc600 to
ad9ec9d
Compare
…() when autoinit is enabled. Fixes #732
…o set FCM autoinit on app startup at configuration time
Added 'created' and 'lastUpdate' variable in Timestamp format inside functions 'addDocumentToFirestoreCollection', 'setDocumentInFirestoreCollection' and 'updateDocumentInFirestoreCollection'
Added optional 'timestamp' boolean variable in 'addDocumentToFirestoreCollection', 'setDocumentInFirestoreCollection' and 'updateDocumentInFirestoreCollection'
Added 'created' and 'lastUpdate' variable in Timestamp format inside functions 'addDocumentToFirestoreCollection', 'setDocumentInFirestoreCollection' and 'updateDocumentInFirestoreCollection'
Updated definitions of functions 'addDocumentToFirestoreCollection', 'setDocumentInFirestoreCollection' and 'updateDocumentInFirestoreCollection'
…thentication via Sign in with Apple.
…eption: java.lang.IllegalArgumentException
(android) fix no notifications on Android 12 and above, Non-fatal Exception: java.lang.IllegalArgumentException
Added timestamp 'created' and 'lastUpdate' variables in Firestore functions
…ore functions can be omitted
…OMPILED_FIRESTORE_POD` plugin variable to switch to using pre-built version. Should resolve #735.
…e to override the Firebase iOS SDK versions specified in `plugin.xml`
Forcing token refresh when calling getClaims on iOS
… when app is launched from cold start by tapping system notification. Resolves #917.
… Feb 2025) https://firebase.google.com/support/release-notes/ios#version_1180_-_february_3_2025 (ios) Update pinned GoogleSignIn SDK to v7.1.0 Resolves #921
…build failure in cordova-android@14 which includes it anyway
…ication so it's not shown twice
Wait for js interface
…ices; correct wait for JS interface, and use evaluateJavascript
(android) fix: plugin no longer gets stuck during startup on some devices; correct wait for JS interface, and use evaluateJavascript
- Make pending global-JS queue synchronized and guard/drain it only when both pluginInitialized and onPageFinished are true (flush pending JS if init completes after page finish). - Add evaluateJavascript() fallback to loadUrl for older devices / errors. - Replace global retry counter with a listener-scoped counter and rename to idTokenNotifyRetryCount / ID_TOKEN_NOTIFY_MAX_RETRIES for clarity.
…11.8.0 to v12.3.0 - September 15, 2025 https://firebase.google.com/support/release-notes/ios#version_1230_-_september_15_2025 Changes minimum deployment version from 13.0 to 15.0. Also updated: - GoogleSignIn from v7.1.0 to v9.0.0 - GoogleTagManager from v8.0.0 to v9.0.0
…ated before attempting to fetch FCM token. Resolves #957
… >= 11.14.0 Fixes #959 BREAKING CHANGE: Default iOS Analytics pods changed to match Firebase SDK >= 11.14.0 requirements Changes: - Updated default plugin.xml to use FirebaseAnalytics/Core + FirebaseAnalytics/IdentitySupport - Replaced deprecated FirebaseAnalyticsOnDeviceConversion with GoogleAdsOnDeviceConversion - Updated post_install.js to properly handle all 4 configuration combinations Plugin variable combinations now correctly map to Firebase modules: | FIREBASE_ANALYTICS_WITHOUT_ADS | IOS_ON_DEVICE_CONVERSION_ANALYTICS | Result | |-------------------------------|-----------------------------------|--------| | false (default) | false (default) | FirebaseAnalytics/Core + IdentitySupport | | true | false | FirebaseAnalytics/Core | | false | true | FirebaseAnalytics | | true | true | FirebaseAnalytics/Core + GoogleAdsOnDeviceConversion | The Firebase iOS SDK >= 11.14.0 migration guide requires: - Analytics + IDFA (no On-Device Conversion): FirebaseAnalytics/Core + IdentitySupport - Analytics only (no IDFA): FirebaseAnalytics/Core - Analytics + IDFA + On-Device Conversion: FirebaseAnalytics (includes everything) - Analytics + On-Device Conversion (no IDFA): FirebaseAnalytics/Core + GoogleAdsOnDeviceConversion Previous implementation incorrectly used FirebaseAnalytics as default, which automatically includes On-Device Conversion in SDK >= 11.14.0, despite IOS_ON_DEVICE_CONVERSION_ANALYTICS defaulting to false. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
GoogleAdsOnDeviceConversion has its own versioning scheme separate from the Firebase iOS SDK and should use version 3.1.0, not 12.3.0. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
…ceholder for `google_analytics_adid_collection_enabled` meta-data tag in `plugin.xml`
…UKRt7YPJnFhCCSJQdvKr Claude/fix GitHub issue 959
(android) fix replacement of google_analytics_adid_collection_enabled in plugin.xml (ios) fix line breaks when replacing FirebaseAnalytics/IdentitySupport in plugin.xml debug: add logging when variable values are being applied to plugin.xml
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TODO
to make the variable tap available when receiving a notification from the background, replace :
By