From 4a99214a5dc8bc57112dba1562cd891882b4fdd9 Mon Sep 17 00:00:00 2001 From: Gaurish Sharma Date: Sat, 24 Jan 2026 12:09:07 -0600 Subject: [PATCH] fix: remove invalid iOS 'project' config field The `dependency.platforms.ios.project` field is not a valid configuration option in the React Native CLI schema. This causes a warning during `yarn install` or any React Native config operation: "Package react-native-sqlite-storage contains invalid configuration: dependency.platforms.ios.project is not allowed" Since the package has a podspec file at the root level, iOS auto-linking works correctly without any explicit iOS configuration. Removing this field eliminates the warning while maintaining full iOS compatibility. --- react-native.config.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/react-native.config.js b/react-native.config.js index dc150a92..7dd4d5ab 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -1,9 +1,6 @@ module.exports = { dependency: { platforms: { - ios: { - project: './platforms/ios/SQLite.xcodeproj' - }, android: { sourceDir: './platforms/android' },