Skip to content
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

docs: typos #2673

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/migrate_to_11.0.0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ This allows for greater flexibility to use methods that are specific to a platfo
Storekit 2 (Sk2) requires iOS 15 as a minimum.
:::

If your app supports only iOS 15 and above (see below hot to determine that). And you want to use storekit 2 new features such as subscription groups then use `STOREKIT2_MODE` during setup (see below)
If your app supports only iOS 15 and above (see below how to determine that). And you want to use storekit 2 new features such as subscription groups then use `STOREKIT2_MODE` during setup (see below)

If your app supports older iOS versions, you'll have two options 1) `STOREKIT1_MODE` will let you use the legacy code to all interactions with the library (i.e. no changes, this is the default). And 2) `STOREKIT_HYBRID_MODE` Will use Sk2 on devices that support it. The library will use the old implementation (Storekit 1) as a default on devices with older versions of iOS

:::warning
Please consider the edgecases of using both (See differnces below).
Please consider the edgecases of using both (See differences below).
:::

### How do I know what's the minimum version of iOS my app supports?
Expand Down