Skip to content

Commit 4905f60

Browse files
committed
Deprecation warning for FDL
1 parent dfd6149 commit 4905f60

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/dynamiclinks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Xcode
3838
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
3939
- name: FirebaseDynamicLinks
40-
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDynamicLinks.podspec
40+
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDynamicLinks.podspec --allow-warnings
4141

4242
spm:
4343
# Don't run on private repo unless it is a PR.
@@ -80,7 +80,7 @@ jobs:
8080
- name: Setup Bundler
8181
run: scripts/setup_bundler.sh
8282
- name: PodLibLint Storage Cron
83-
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDynamicLinks.podspec --platforms=ios ${{ matrix.flags }}
83+
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDynamicLinks.podspec --platforms=ios ${{ matrix.flags }} --allow-warnings
8484

8585
quickstart:
8686
# Don't run on private repo unless it is a PR.

FirebaseDynamicLinks/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unreleased
2+
- [added] Added deprecation warning in advance of August 25, 2025 Dynamic Links service shutdown. (#12995)
3+
14
# 10.3.0
25
- [fixed] Fixes issue where `utmParametersDictionary` / `minimumAppVersion` were not provided and their value were set to `[NSNull null]` instead of `nil`.
36

FirebaseDynamicLinks/Sources/Public/FirebaseDynamicLinks/FIRDynamicLinks.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ NS_ASSUME_NONNULL_BEGIN
3131
* @abstract A class that checks for pending Dynamic Links and parses URLs.
3232
* This class is available on iOS only.
3333
*/
34-
34+
DEPRECATED_MSG_ATTRIBUTE(
35+
"Firebase Dynamic Links is deprecated and the service will shut down on August 25, 2025.")
3536
NS_EXTENSION_UNAVAILABLE_IOS("Firebase Dynamic Links is not supported for iOS extensions.")
3637
API_UNAVAILABLE(macos, tvos, watchos)
3738
NS_SWIFT_NAME(DynamicLinks)

0 commit comments

Comments
 (0)