-
Notifications
You must be signed in to change notification settings - Fork 662
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
Fix don't keep activities on add fragment. #4466
Merged
Merged
Changes from 4 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
834e92c
Works for card element
michelleb-stripe 167eb4a
Fix add fragment save card.
michelleb-stripe e67917f
Fix up comments explaing the why
michelleb-stripe f83fc1d
Cleanup code
michelleb-stripe 5919b77
Add a note on the save customer card flow.
michelleb-stripe 0e1f842
Add in SaveStateHandle
michelleb-stripe d6c2321
Working version with lots of extra log statements.
michelleb-stripe e421f0e
Remove log statements
michelleb-stripe f33bd72
Save the selected item
michelleb-stripe 9c6bf52
Add savedHandleState to PaymentOptionsViewModel.
michelleb-stripe 105e4eb
Returning user, on authentication screen, home, recent activities, Ca…
michelleb-stripe a54bbc5
Guest, Complete, home, recent, makes so not in processing state
michelleb-stripe 110cf4b
PaymentSheet Complete working.
michelleb-stripe 27fb25d
Fix problem in options flow
michelleb-stripe 430175a
Merge branch 'master' into michelleb/dka-add-fragment
michelleb-stripe 3ec4d42
All working.
michelleb-stripe a8558c1
Cleanup event reporter and other code.
michelleb-stripe 1b5a9a6
Working on unit tests.
michelleb-stripe 2bd6640
Unit tests passing and manual testing complete
michelleb-stripe 6251944
Undo weak registry map changes.
michelleb-stripe 4b6d36c
Add injection and injection fallback tests.
michelleb-stripe fb63654
format and apiDump
michelleb-stripe 97ffad6
format and apiDump
michelleb-stripe 53c68b0
Fix intermittent failures
michelleb-stripe a1823a6
Merge with master
michelleb-stripe 281158e
format
michelleb-stripe bcfb35c
Merge remote-tracking branch 'origin/master' into michelleb/dka-add-f…
michelleb-stripe 040b914
Fix bug launching google pay.
michelleb-stripe 78d1113
Fix bug on add button.
michelleb-stripe a67a496
Fix bug launching google pay.
michelleb-stripe ce57694
Update payments-core/src/test/java/com/stripe/android/googlepaylaunch…
michelleb-stripe 2734828
Merge with master
michelleb-stripe ec9fd9b
Merge branch 'michelleb/dka-add-fragment' of github.com:stripe/stripe…
michelleb-stripe 40bf19b
Remove parcelable on TransitionTarget and fix test dispatcher class.
michelleb-stripe fb1bb27
Cleanup
michelleb-stripe 57607bd
Update paymentsheet/src/main/java/com/stripe/android/paymentsheet/Pay…
michelleb-stripe 7cb4342
Update paymentsheet/src/main/java/com/stripe/android/paymentsheet/Pay…
michelleb-stripe 314f5a3
Remove println
michelleb-stripe f0a9994
Merge branch 'michelleb/dka-add-fragment' of github.com:stripe/stripe…
michelleb-stripe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
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.
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.
Unrelated to this change, but what we're doing here can be achieved with
launchIn
: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/launch-in.html