From cdc7bef02457ee21ac2e1a12423c26fee5d1da49 Mon Sep 17 00:00:00 2001 From: Makisuo <31933546+Makisuo@users.noreply.github.com> Date: Thu, 5 Jun 2025 14:45:39 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0ce2831..afeaa6f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ + +


logo @@ -7,6 +9,14 @@ [Superwall](https://superwall.com/) lets you remotely configure every aspect of your paywall — helping you find winners quickly. + +> **⚠️ DEPRECATED** +> +> This sdk is deprecated and no longer maintained. Please use our new and improve expo sdk instead: +> +> **👉 [superwall-expo](https://github.com/superwall/superwall-expo)** +> + ## Superwall **Superwall** is an open source framework that provides a wrapper for presenting and creating paywalls. It interacts with the Superwall backend letting you easily iterate paywalls on the fly in `React Native`! From b8d55a90e508d2557f9d4c016bad6d4f37304e9e Mon Sep 17 00:00:00 2001 From: Makisuo <31933546+Makisuo@users.noreply.github.com> Date: Thu, 5 Jun 2025 14:56:01 +0200 Subject: [PATCH 2/3] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index afeaa6f..df3fc89 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,6 @@

-[Superwall](https://superwall.com/) lets you remotely configure every aspect of your paywall — helping you find winners quickly. - - > **⚠️ DEPRECATED** > > This sdk is deprecated and no longer maintained. Please use our new and improve expo sdk instead: From 1bb334cee2fb44fd78c77a559675c940a53d4212 Mon Sep 17 00:00:00 2001 From: Nikita Dudin Date: Fri, 13 Jun 2025 20:34:12 +0300 Subject: [PATCH 3/3] Set the default value to false for the enableExperimentalDeviceVariables parameter --- ios/Json/SuperwallOptions+Json.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/Json/SuperwallOptions+Json.swift b/ios/Json/SuperwallOptions+Json.swift index 7c5d4f4..778a48a 100644 --- a/ios/Json/SuperwallOptions+Json.swift +++ b/ios/Json/SuperwallOptions+Json.swift @@ -18,7 +18,7 @@ extension SuperwallOptions { let isGameControllerEnabled = dictionary["isGameControllerEnabled"] as? Bool ?? false let storeKitVersion = dictionary["storeKitVersion"] as? String let enableExperimentalDeviceVariables = - dictionary["enableExperimentalDeviceVariables"] as? Bool + dictionary["enableExperimentalDeviceVariables"] as? Bool ?? false let superwallOptions = SuperwallOptions() superwallOptions.paywalls = paywalls