We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d50d3d commit 97dfa44Copy full SHA for 97dfa44
1 file changed
README.md
@@ -9,9 +9,11 @@ This is a project based on AOSP DownloadManager and I made this with kotlin and
9
* get a instance of UploadManager
10
```kotlin
11
val uploadManager: UploadManager = UploadManager.getUploadManger(context);
12
+ // init it when your app boots
13
+ uploadManager.init()
14
```
-The best practise is to call `UploadManager.getUploadManger(context)` as early as you need to display
-notifications related to upload tasks
15
+The best practise is to call `UploadManager.init()` as early as you need to display
16
+notifications related to upload tasks and to clear/resume the crashed tasks
17
18
* upload
19
0 commit comments