Skip to content

Commit

Permalink
Converted FBSDKAppLinkNavigation to Swift
Browse files Browse the repository at this point in the history
Reviewed By: samodom

Differential Revision: D40039657

fbshipit-source-id: 5c18105639832320c30b5d5caa6d9c3ab54adbaf
  • Loading branch information
Pablo Brizuela Guardado authored and facebook-github-bot committed Oct 19, 2022
1 parent 083f499 commit 55eddd9
Show file tree
Hide file tree
Showing 17 changed files with 661 additions and 792 deletions.
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ file_name:
ShareDialogMode.swift,
LoginAppEventNames.swift,
FBSDKAppEventConversionsAPITransformer.swift,
AppLinkNavigationTestDependencies.swift,
ValueClamping.swift,
]
trailing_comma:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

### Changed
- The enum `AppLinkNavigation.Type` type has been renamed tp `AppLinkNavigationType`.
- The initializer `init(appLink:extras:appLinkData:settings:)` in `AppLinkNavigation` ignores the `settings` argument if one is passed.
- The method `navigation(with:extras:appLinkData:settings:)` in `AppLinkNavigation` ignores the `settings` argument if one is passed.

### Deprecated

- The `navigation(with:extras:appLinkData:settings:)` method in `AppLinkNavigation` is deprecated in favor of the `init(appLink:extras:appLinkData:)` designated init.
- The `init(appLink:extras:appLinkData:settings:)` initializer in `AppLinkNavigation` is deprecated in favor of the `init(appLink:extras:appLinkData:)` designated init.
- The `Profile.enableUpdatesOnAccessTokenChange(_:)` method is deprecated in favor of the `Profile.isUpdatedWithAccessTokenChange` property.
- `SettingsProtocol.codelessDebugLogEnabled` is deprecated in favor of `SettingsProtocol.isCodelessDebugLogEnabled`.
- `SettingsProtocol.advertiserIDCollectionEnabled` is deprecated in favor of `SettingsProtocol.isAdvertiserIDCollectionEnabled`.
Expand Down
Loading

0 comments on commit 55eddd9

Please sign in to comment.