Skip to content
Draft
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
2 changes: 1 addition & 1 deletion platforms/android/samples/MobileBuyIntegration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Edit `.env`:
```text
STOREFRONT_DOMAIN=your-store.myshopify.com
STOREFRONT_ACCESS_TOKEN=your-token
API_VERSION=2025-07
API_VERSION=2026-04
```

Optional values enable Customer Account API and buyer identity demo flows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def properties = loadProperties()
// Storefront API
def storefrontDomain = properties.getProperty("STOREFRONT_DOMAIN")
def accessToken = properties.getProperty("STOREFRONT_ACCESS_TOKEN")
def apiVersion = properties.getProperty("API_VERSION", "2025-07")
def apiVersion = properties.getProperty("API_VERSION", "2026-04")

// Customer Account API
def customerAccountApiClientId = properties.getProperty("CUSTOMER_ACCOUNT_API_CLIENT_ID")
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion platforms/android/scripts/apollo_download_schema
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ npx -y dotenv-cli -e .env -- sh -c '
fi
if [ -z "$VERSION" ]; then
echo "❌ API_VERSION is not set. Check your .env file."
echo " Add API_VERSION=2025-07 to your .env"
echo " Add API_VERSION=2026-04 to your .env"
exit 1
fi

Expand Down
Loading
Loading