Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This repository contains the Checkout Kit implementations, samples, and protocol
| --- | --- | --- | --- | --- | --- |
| `ShopifyCheckoutKit` | `4.0.0-alpha.5` | Swift Package Manager, CocoaPods | Alpha | iOS checkout presentation SDK. | [Swift](platforms/swift/README.md) |
| `ShopifyAcceleratedCheckouts` | `4.0.0-alpha.5` | Swift Package Manager, CocoaPods subspec | Alpha | SwiftUI Shop Pay and Apple Pay accelerated checkout buttons for iOS 16+. | [Swift](platforms/swift/README.md#accelerated-checkouts) |
| `com.shopify:checkout-kit` | `4.0.0-alpha.4` | Maven Central | Alpha | Android checkout presentation SDK. | [Android](platforms/android/README.md) |
| `com.shopify:checkout-kit` | `4.0.0-alpha.5` | Maven Central | Alpha | Android checkout presentation SDK. | [Android](platforms/android/README.md) |
| `@shopify/checkout-kit-react-native` | `4.0.0-alpha.3` | npm `next` dist-tag | Alpha | React Native wrapper for the iOS and Android native SDKs. | [React Native](platforms/react-native/README.md) |
| `@shopify/checkout-kit` | `4.0.0-alpha.3` | npm `next` dist-tag | Alpha | Web component for opening Shopify checkout from a web page. | [Web](platforms/web/README.md) |
| `EmbeddedCheckoutProtocol` | Source package | Swift Package Manager | Internal/supporting | Swift client for Embedded Checkout Protocol messages. | [Protocol Swift](protocol/languages/swift/README.md) |
Expand Down Expand Up @@ -81,7 +81,7 @@ Use the Shopify.dev guides for broader product workflows:

Checkout Kit is the current home for the SDKs that were previously published as Checkout Sheet Kit. The renamed packages use a shared `4.0.0-alpha.X` version format while the new package line settles:

- Swift is currently `4.0.0-alpha.5`; Android is currently `4.0.0-alpha.4`; React Native is currently `4.0.0-alpha.3`.
- Swift and Android are currently `4.0.0-alpha.5`; React Native is currently `4.0.0-alpha.3`.
- Web prereleases use the npm `next` dist-tag.
- React Native requires React Native New Architecture.
- Stable releases will continue on the same `4.x` package line after the alpha period.
Expand Down
8 changes: 4 additions & 4 deletions platforms/android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

> [!WARNING]
> **Alpha - early preview.** This software is an early preview and is **not**
> production-ready. The current Checkout Kit for Android alpha is `4.0.0-alpha.4`.
> production-ready. The current Checkout Kit for Android alpha is `4.0.0-alpha.5`.
> Stability is not guaranteed, and breaking changes may occur in any release.

**Checkout Kit for Android** lets Android apps present Shopify checkout in a native bottom sheet while preserving store checkout customizations such as Checkout UI extensions, Shopify Functions, branding, and supported payment methods.
Expand Down Expand Up @@ -48,13 +48,13 @@

## Install

For alpha testing, install the exact version shown below. The current Checkout Kit for Android alpha is `4.0.0-alpha.4`.
For alpha testing, install the exact version shown below. The current Checkout Kit for Android alpha is `4.0.0-alpha.5`.

### Gradle

```groovy
dependencies {
implementation "com.shopify:checkout-kit:4.0.0-alpha.4"
implementation "com.shopify:checkout-kit:4.0.0-alpha.5"
}
```

Expand All @@ -64,7 +64,7 @@ dependencies {
<dependency>
<groupId>com.shopify</groupId>
<artifactId>checkout-kit</artifactId>
<version>4.0.0-alpha.4</version>
<version>4.0.0-alpha.5</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion platforms/android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
checkoutKitAndroid = "4.0.0-alpha.4"
checkoutKitAndroid = "4.0.0-alpha.5"
embeddedCheckoutProtocolAndroid = "2026.04.08.1-alpha.2"

androidApplicationGradlePlugin = "9.3.1"
Expand Down
Loading