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 2904e4e commit 6cbb589Copy full SHA for 6cbb589
README.md
@@ -12,7 +12,9 @@ Before starting please download the whitepaper **Mobile App Integration** from t
12
13
Using npm you can install the module:
14
``` sh
15
-npm install react-native-queue-it
+npm install --save react-native-queue-it
16
+#On iOS
17
+cd ios && pod install
18
```
19
20
If you're using Android, the library also needs network state information so you'll need to include these permissions in your app's manifest file:
example/src/App.tsx
@@ -29,7 +29,7 @@ class App extends Component<{}, AppState> {
29
};
30
}
31
componentDidMount() {
32
- //QueueIt.enableTesting();
+ //QueueIt.enableTesting(true);
33
34
35
enqueue = async () => {
0 commit comments