Skip to content

Commit 70a4ee3

Browse files
author
Josh Walker
committed
Closes andpor#384
1 parent 3893c0c commit 70a4ee3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ There are sample apps provided in test directory that can be used in with the Aw
1414

1515
Please let me know your projects that use these SQLite React Native modules. I will list them in the reference section. If there are any features that you think would benefit this library please post them.
1616

17-
The library has been tested with React 16.2 (and earlier) and XCode 7,8,9 - it works fine out of the box without any need for tweaks or code changes. For XCode 7,8 vs. XCode 6 the only difference is that sqlite ios library name suffix is tbd instead of dylib.
17+
The library has been tested with React 16.2 (and earlier) and XCode 7,8,9 - it works fine out of the box without any need for tweaks or code changes. For XCode 7,8 vs. XCode 6 the only difference is that sqlite ios library name suffix is tbd instead of dylib.
1818

1919
Version 3.2 is the first version compatible with RN 0.40.
2020

@@ -38,11 +38,11 @@ Or use the sample Podfile included in the package by copying it over to ios subd
3838

3939
Refresh the Pods installation
4040
```ruby
41-
pod install
41+
pod install
4242
```
4343
OR
4444
```ruby
45-
pod update
45+
pod update
4646
```
4747

4848

@@ -138,7 +138,8 @@ npm install --save react-native-sqlite-storage
138138
...
139139
140140
include ':react-native-sqlite-storage'
141-
project(':react-native-sqlite-storage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sqlite-storage/src/android')
141+
project(':react-native-sqlite-storage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sqlite-storage/platform/android') // react-native-sqlite-storage >= 4.0.0
142+
// IMPORTANT: if you are working with a version less than 4.0.0 the project directory is '../node_modules/react-native-sqlite-storage/src/android'
142143
```
143144

144145
#### Step 3 - Update app module Gradle Build script (located under Gradle Settings in Project Panel)

0 commit comments

Comments
 (0)