You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -95,18 +95,32 @@ v1.0 - Initial release for iOS with full support of all operations based on plan
95
95
96
96
##### With CocoaPods:
97
97
98
+
This command should be executed in the root directory of your RN project
98
99
```shell
99
100
npm install --save react-native-sqlite-storage
100
101
```
101
-
Then add this to your Podfile
102
+
Then add this to your Podfile which should be located inside the ios project subdirectory
102
103
```ruby
103
-
pod 'react-native-sqlite-storage', :path => './node_modules/react-native-sqlite-storage'
104
+
pod 'React', :path => '../node_modules/react-native'
105
+
pod 'react-native-sqlite-storage', :path => '../node_modules/react-native-sqlite-storage'
104
106
```
107
+
Or use the sample Podfile included in the package by copying it over to ios subdirectory and replacing AwesomeProject inside of it with the name of your RN project.
108
+
109
+
Refresh the Pods installation
110
+
```ruby
111
+
pod install
112
+
```
113
+
OR
114
+
```ruby
115
+
pod update
116
+
```
117
+
105
118
106
119
Done, skip to Step 2.
107
120
108
121
##### Without CocoaPods:
109
122
123
+
This command should be executed in the root directory of your RN project
0 commit comments