Skip to content

Commit 45d3a5c

Browse files
committed
Fix package name from gradle
1 parent 6a75452 commit 45d3a5c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
There is only one module, FileSystem, that can be imported like this:
44

55
```javascript
6-
import FileSystem from 'react-native-filesystem';
6+
import FileSystem from 'react-native-filesystem-v1';
77
```
88

9-
This module works on iOS 8.0+ and Android Ice Cream Sandwich and newer (4.1.x / API-level 16).
9+
This module works on iOS 8.0+ and Android Ice Cream Sandwich and newer (4.1.x / API-level 16) & UWP 1.2.
1010

1111
## FileSystem
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-native-filesystem-v1",
33
"description": "Simple file system API for iOS & Android & Windows.",
44
"author": "Ben Wixen <[email protected]>",
5-
"version": "0.10.0",
5+
"version": "0.10.1",
66
"main": "modules/FileSystem.js",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"

tests/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ android {
126126
}
127127

128128
dependencies {
129-
compile project(':react-native-filesystem')
129+
compile project(':react-native-filesystem-v1')
130130
compile fileTree(dir: "libs", include: ["*.jar"])
131131
compile "com.android.support:appcompat-v7:23.0.1"
132132
compile "com.facebook.react:react-native:+" // From node_modules

tests/android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
rootProject.name = 'RNFileSystemTests'
22

33
include ':app'
4-
include ':react-native-filesystem'
5-
project(':react-native-filesystem').projectDir = new File(rootProject.projectDir, '../../android')
4+
include ':react-native-filesystem-v1'
5+
project(':react-native-filesystem-v1').projectDir = new File(rootProject.projectDir, '../../android')

0 commit comments

Comments
 (0)