From fddb18417d32c0ea5ba8575c270cb01de6570fbe Mon Sep 17 00:00:00 2001 From: Pavlos Vinieratos Date: Mon, 15 Jan 2024 14:03:21 +0200 Subject: [PATCH 1/2] Update migrate_to_11.0.0.mdx --- docs/docs/migrate_to_11.0.0.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/migrate_to_11.0.0.mdx b/docs/docs/migrate_to_11.0.0.mdx index af21003c5..0205a4b53 100644 --- a/docs/docs/migrate_to_11.0.0.mdx +++ b/docs/docs/migrate_to_11.0.0.mdx @@ -48,7 +48,7 @@ If your app supports only iOS 15 and above (see below hot to determine that). An 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? From 4fe181af10214f7e2f419c47905228185be79419 Mon Sep 17 00:00:00 2001 From: Pavlos Vinieratos Date: Mon, 15 Jan 2024 19:05:19 +0200 Subject: [PATCH 2/2] Update migrate_to_11.0.0.mdx --- docs/docs/migrate_to_11.0.0.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/migrate_to_11.0.0.mdx b/docs/docs/migrate_to_11.0.0.mdx index 0205a4b53..d4621d032 100644 --- a/docs/docs/migrate_to_11.0.0.mdx +++ b/docs/docs/migrate_to_11.0.0.mdx @@ -43,7 +43,7 @@ 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