We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a684ac commit 4f2cdf5Copy full SHA for 4f2cdf5
README.md
@@ -19,10 +19,10 @@ import { fula, Types } from 'react-native-fula';
19
await fula.initJNI('', ''); //identity,storePath
20
21
//Store file to the box
22
-const res = await fula.put(ciduint8.toString(), valueString);
+const res = await fula.putJNI(ciduint8.toString(), valueString);
23
24
//Get file path form the box
25
-const fetchedValue = await fula.get(ciduint8.toString());
+const fetchedValue = await fula.getJNI(ciduint8.toString());
26
27
```
28
0 commit comments