diff --git a/README.md b/README.md index 2ee868590..c56f83df3 100644 --- a/README.md +++ b/README.md @@ -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) | @@ -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. diff --git a/platforms/android/README.md b/platforms/android/README.md index 2edea65a1..a8d40ed15 100644 --- a/platforms/android/README.md +++ b/platforms/android/README.md @@ -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. @@ -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" } ``` @@ -64,7 +64,7 @@ dependencies { com.shopify checkout-kit - 4.0.0-alpha.4 + 4.0.0-alpha.5 ``` diff --git a/platforms/android/gradle/libs.versions.toml b/platforms/android/gradle/libs.versions.toml index 50ebe0364..1bcb320e6 100644 --- a/platforms/android/gradle/libs.versions.toml +++ b/platforms/android/gradle/libs.versions.toml @@ -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"