react-native-sqlite-storage icon indicating copy to clipboard operation
react-native-sqlite-storage copied to clipboard

Autolink not working for React Native 0.69

Open mitsuharu opened this issue 2 years ago • 10 comments

Expected Behavior

React Native 0.69 autolink works with react-native-sqlite-storage.

Current Behavior

React Native 0.69 autolink does not work, since it changes react-native cli, https://github.com/react-native-community/cli/pull/1537.

Possible Solution

It removes deprecated params from react-native.config.

Steps to Reproduce (for bugs)

  1. create a new React Native Project version 0.69
  2. install react-native-sqlite-storage
  3. call openDatabase method then show below message. [TypeError: null is not an object (evaluating 'NativeModules["SQLite"][method]')]

Context

Your Environment

  • React Native SQLite Storage Version used: 6.0.1
  • React Native version used: 0.69
  • Operating System and version (simulator or device): iOS

Debug logs

mitsuharu avatar Jun 25 '22 01:06 mitsuharu

+1

pigpudle avatar Jun 28 '22 12:06 pigpudle

I have the same error.


TypeError: null is not an object (evaluating 'NativeModules["SQLite"][method]')
at node_modules/react-native/Libraries/Core/ExceptionsManager.js:95:4 in reportException
at node_modules/react-native/Libraries/Core/ExceptionsManager.js:141:19 in handleException
at node_modules/react-native/Libraries/Core/setUpErrorHandling.js:24:6 in handleError
at node_modules/@react-native/polyfills/error-guard.js:49:36 in ErrorUtils.reportFatalError
at node_modules/metro-runtime/src/polyfills/require.js:203:6 in guardedLoadModule
at http://127.0.0.1:19000/node_modules/expo/AppEntry.bundle?platform=android&dev=true&hot=false&strict=false&minify=false:161585:3 in global code

while following this guide

Also had a Invariant Violation: "main" has not been registered. error. Not sure what this is but I want to handle the first bug first.

My Environment

  • React Native SQLite Storage Version used: 6.0.1
  • React Native version used: 0.69.1
  • Operating System and version (simulator or device): Android

roberthobblebottom avatar Jul 01 '22 07:07 roberthobblebottom

+1

yudizAnkita avatar Jul 05 '22 12:07 yudizAnkita

same here. happening this with latest react native version. first this warning warn Package react-native-sqlite-storage has been ignored because it contains invalid configuration. Reason: "dependency.platforms.ios.project" is not allowed

then giving this error:

ERROR  TypeError: null is not an object (evaluating 'NativeModules["SQLite"][method]')
 ERROR  Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect.
      This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native.
 ERROR  Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of the error is that the application entry file path is incorrect.
      This can also happen when the JS bundle is corrupt or there is an early initialization error when loading React Native

rassemdev avatar Jul 06 '22 14:07 rassemdev

I had to downgrade my project to 0.68.2

AlejandroBelloIglesias avatar Jul 07 '22 21:07 AlejandroBelloIglesias

There is a new version of @react-native-community/cli (V8.0.3) released 2 days ago, after bump to this version, everything about react-native-sqlite-storage in my project works like before.

Note: you can check the version of @react-native-community/cli in yarn.lock, if it is not V8.0.3, maybe you should delete yarn.lock file and rerun yarn install to generate the file again and bump the version of @react-native-community/cli to latest.

zhuanghongji avatar Jul 10 '22 12:07 zhuanghongji

https://github.com/andpor/react-native-sqlite-storage/issues/527

Solution: https://github.com/andpor/react-native-sqlite-storage/pull/523

Yet its not merged to main. Maintainers please do merge this OR do something soon.

featuriz avatar Jul 29 '22 06:07 featuriz

I have added a patch file (patch-package) for this issue.

mitsuharu avatar Jul 29 '22 10:07 mitsuharu

Hello @mitsuharu I saw that file, But I don't know how to use in npm update or in my packages file. Can you please guide me on How to use this patch.

featuriz avatar Aug 01 '22 16:08 featuriz

@featuriz

  1. set up patch-package for your project
  2. open node_modules/react-native-sqlite-storage/react-native.config.js
  3. edit as follows
-			ios: {
-				project: './platforms/ios/SQLite.xcodeproj'
-			},
+			ios: {},
  1. run npx patch-package react-native-sqlite-storage at terminal
  2. patch-package makes react-native-sqlite-storage+6.0.1.patch and add it to {$root}/patches
  3. build your project!

https://gist.github.com/mitsuharu/2167565246e2808bb9c240cfaf6d0bf4

mitsuharu avatar Aug 02 '22 04:08 mitsuharu