Skip to content

Commit

Permalink
Merge pull request #60 from dtuite/master
Browse files Browse the repository at this point in the history
Explain a known issue in APK 27 and greater
  • Loading branch information
TSMMark committed Feb 2, 2018
2 parents 67cbd1d + 8159b45 commit 19c16f6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,19 @@ Ensure `compileSdkVersion` and `targetSdkVersion` are 25.

Done!

## Known issues

Android APK 27 and above require notifications to provide their own `NotificationChannel`. `react-native-background-upload` does not yet meet this requirement and thus [will cause crashes in Android 8.1 and above](https://github.com/Vydia/react-native-background-upload/issues/59#issuecomment-362476703). This issue can be avoided by electing not to use native notifications.

```js
const options = {
// ...
notification: {
enabled: false,
},
};
```


## Gratitude

Expand Down

0 comments on commit 19c16f6

Please sign in to comment.