From 0ff2072b68752b5fd4944c3d34467f68fdae74fd Mon Sep 17 00:00:00 2001 From: Sami Blick Date: Thu, 12 Mar 2026 19:22:56 +0200 Subject: [PATCH] fix: loosen peer dependency version ranges MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace exact/tilde peer dependency versions with open lower-bound ranges. The native module code does not impose strict RN version requirements — the iOS podspec has no version constraints on ExpoModulesCore or MobileConsentsSDK, and the Android build.gradle only pins the Cookie Information native SDK. Expo 52 / RN 0.76 / React 18 are used as the minimum baseline as that is the oldest version set with compatible Expo module support. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 04ad6d0..c92863a 100644 --- a/package.json +++ b/package.json @@ -64,8 +64,8 @@ "typescript": "~5.8.3" }, "peerDependencies": { - "expo": "~53.0.26", - "react": "19.0.0", - "react-native": "0.79.6" + "expo": ">=52.0.0", + "react": ">=18.0.0", + "react-native": ">=0.76.0" } }