[Android] Dogfood ShopifyCheckout view in sample - #457
Merged
Conversation
Contributor
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
11 tasks
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 09:16
2847d6c to
8febad5
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
2 times, most recently
from
July 14, 2026 09:45
3b14c57 to
d971ddd
Compare
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 09:45
8febad5 to
fa38ddb
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 14, 2026 11:39
d971ddd to
930478c
Compare
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 11:39
fa38ddb to
253322d
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
2 times, most recently
from
July 14, 2026 12:47
1b8227e to
24c820a
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 14, 2026 12:51
24c820a to
e57bb1d
Compare
kiftio
commented
Jul 14, 2026
| import com.shopify.checkoutkit.ColorScheme | ||
|
|
||
| @Composable | ||
| fun AppearanceSection( |
Contributor
Author
There was a problem hiding this comment.
reworking settings a bit to group color schemes under app, leaving storefront separate
kiftio
commented
Jul 14, 2026
| import com.shopify.checkout_kit_android_demo.settings.data.CheckoutSheetPreset | ||
|
|
||
| @Composable | ||
| fun CheckoutPresentationModeSection( |
Contributor
Author
There was a problem hiding this comment.
another settings update to split presentation modes (present vs view)
and grouping options underneath present where appropriate
kiftio
marked this pull request as ready for review
July 14, 2026 12:54
Package Size
Android file breakdown
Measured from the PR base SHA and PR head SHA. The file breakdown shows uncompressed sizes within each package artifact, so individual files do not sum to the compressed artifact total. This comment reports package artifact sizes only; it is not a final app binary-size report. |
11 tasks
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 13:40
253322d to
2d9ed69
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 14, 2026 13:40
e57bb1d to
57b2d1f
Compare
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 14:44
2d9ed69 to
54efe2d
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 14, 2026 14:44
57b2d1f to
020fa96
Compare
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 15:07
54efe2d to
565b063
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 14, 2026 15:07
020fa96 to
c9f2ff4
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 14, 2026 15:35
c9f2ff4 to
582e6c7
Compare
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
from
July 14, 2026 15:35
565b063 to
288e313
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 15, 2026 08:20
582e6c7 to
88c5f9e
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 15, 2026 12:28
88c5f9e to
d00a27b
Compare
kiftio
force-pushed
the
07-14-extract_and_expose_checkoutview
branch
2 times, most recently
from
July 16, 2026 09:32
0ca3772 to
f616e04
Compare
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
3 times, most recently
from
July 16, 2026 10:23
96b3980 to
67639e6
Compare
Contributor
Author
kiftio
changed the base branch from
07-14-extract_and_expose_checkoutview
to
graphite-base/457
July 16, 2026 10:33
Assisted-By: devx/f08a3e3c-67c6-4e4a-b0bb-06bcc37aec0d
kiftio
force-pushed
the
07-14-dogfood_checkoutview_in_sample
branch
from
July 16, 2026 10:33
67639e6 to
c4e849d
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.

What changes are you making?
Adds a
CheckoutPresentationModesetting to the Android demo app that lets developers choose between two ways of presenting checkout:ShopifyCheckoutKit.present(...)flow, with its associated sheet preset, drag-to-dismiss, and tap-away-to-dismiss sub-options.CheckoutViewdirectly inside aModalBottomSheetowned by the sample app, demonstrating how a host app can control sheet styling and dismissal independently of Checkout Kit's built-in sheet.The
ColorSchemeSectioncomposable is replaced by a newAppearanceSectionthat groupsStorefrontvsAppappearance selection with nested color scheme options (Dark, Light, Automatic). The sheet preset controls are moved under theCheckoutPresentationModeSectionand are only shown when the Checkout Kit sheet mode is active. ThecheckoutConfigurationlambda is extracted frompresentCheckoutso it can be reused by both presentation paths. The new preference is persisted viaPreferencesManagerand propagated throughSettingsRepository,Settings,UserPreferences, andCartViewModel.How to test
ModalBottomSheetwith a compact drag handle.Before you merge
Important
platforms/swift/README.mdand/orplatforms/android/README.md)Releasing a new Swift version?
ShopifyCheckoutKit.podspecplatforms/swift/Sources/ShopifyCheckoutKit/ShopifyCheckoutKit.swiftplatforms/swift/README.md(major version only)Releasing a new Embedded Checkout Protocol version?
embeddedCheckoutProtocolAndroidinplatforms/android/gradle/libs.versions.tomlprotocol/languages/kotlin/embedded-checkout-protocol/api/embedded-checkout-protocol.apiif the public API changedReleasing a new Android version?
checkoutKitAndroidinplatforms/android/gradle/libs.versions.tomlplatforms/android/README.mdTip
See the Contributing documentation for the full release process per platform.