(MAJOR): remove all deprecated APIs#450
Open
kgangineni wants to merge 2 commits into
Open
Conversation
kgangineni
marked this pull request as draft
June 24, 2026 16:59
kgangineni
force-pushed
the
removeDeprecated
branch
5 times, most recently
from
June 24, 2026 20:31
48fae7b to
1af18b9
Compare
kgangineni
marked this pull request as ready for review
June 25, 2026 15:45
sshropshire
reviewed
Jun 25, 2026
- CardClient.finishApproveOrder(intent, authState) - CardClient.finishVault(intent, authState) - CardPresentAuthChallengeResult.Success.authState - PayPalWebCheckoutClient(context, config, urlScheme) constructor - PayPalWebCheckoutClient.start(activity, request) returning PayPalPresentAuthChallengeResult - PayPalWebCheckoutClient.vault(activity, request) returning PayPalPresentAuthChallengeResult - PayPalWebCheckoutClient.finishStart(intent, authState) - PayPalWebCheckoutClient.finishVault(intent, authState) - PayPalWebVaultRequest.approveVaultHref - PayPalPresentAuthChallengeResult.Success.authState - PayPalDataCollector.collectDeviceData(context, clientMetadataId) overloads
kgangineni
force-pushed
the
removeDeprecated
branch
from
June 25, 2026 18:44
1af18b9 to
1557d59
Compare
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
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.
Summary
Removes all remaining deprecated public APIs across
FraudProtection,CardPayments, andPayPalWebPaymentsmodules.API / Contract Changes
New
None
Modified
None
Breaking Changes
Migration:
PayPalDataCollector.collectDeviceData(context, clientMetadataId, additionalData)→ usecollectDeviceData(context, request)with aPayPalDataCollectorRequestCardClient.finishApproveOrder(intent, authState)→ usefinishApproveOrder(intent)CardClient.finishVault(intent, authState)→ usefinishVault(intent)PayPalWebCheckoutClient.finishStart(intent, authState)→ usefinishStart(intent)PayPalWebCheckoutClient.finishVault(intent, authState)→ usefinishVault(intent)CardPresentAuthChallengeResult.Success.authStateandPayPalPresentAuthChallengeResult.Success.authState→ removed; auth state is now managed internally by the SDKPayPalWebCheckoutClient.start(activity, request)→ usestart(activity, request, callback)PayPalWebCheckoutClient.vault(activity, request)→ usevault(activity, request, callback)PayPalWebCheckoutClient(context, configuration, urlScheme)→ usePayPalWebCheckoutClient(context, configuration)and setreturnToAppStrategyinPayPalWebCheckoutRequest/PayPalWebVaultRequest(e.g.ReturnToAppStrategy.CustomUrlScheme(urlScheme))PayPalWebVaultRequest.approveVaultHref→ removed; property was previously ignoredChecklist