GitHub
github.com › naumanmir › filedownloadservice
GitHub - naumanmir/filedownloadservice: A kotlin based Android library which downloads files in background using android service and notifications. Provide url of the file to download, folder path where you want to download and filename. · GitHub
A kotlin based Android library which downloads files in background using android service and notifications. Provide url of the file to download, folder path where you want to download and filename. - naumanmir/filedownloadservice
Starred by 19 users
Forked by 5 users
Languages Kotlin 96.2% | Java 3.8%
GitHub
github.com › tonyofrancis › Fetch
GitHub - tonyofrancis/Fetch: The best file downloader library for Android · GitHub
Fetch is a simple, powerful, customizable file download manager library for Android. Simple and easy to use API. Continuous downloading in the background. Concurrent downloading support. Ability to pause and resume downloads. Set the priority of a download. Network-specific downloading support. Ability to retry failed downloads. Ability to group downloads. Easy progress and status tracking. Download remaining time reporting (ETA). Download speed reporting. Save and Retrieve download information anytime. Notification Support.
Starred by 1.8K users
Forked by 358 users
Languages Kotlin 85.3% | Java 14.6% | Shell 0.1%
GitHub
github.com › majidgolshadi › Android-Download-Manager-Pro
GitHub - majidgolshadi/Android-Download-Manager-Pro: Android/Java download manager library help you to download files in parallel mechanism in some chunks. · GitHub
This library is a download manager android/java library which developers can use in their apps and allow you to download files in parallel mechanism in some chunks and notify developers about tasks status (any download file process is a task).
Starred by 1.6K users
Forked by 311 users
Languages Java
GitHub
github.com › SIARAY › DownloadManagerPlus
GitHub - SIARAY/DownloadManagerPlus: Using faster and easier than Android Download Manager
<receiver android:name=".YourNotificationBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.DOWNLOAD_COMPLETE"/> <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" /> </intent-filter> </receiver> Copyright 2017 Siamak Rayeji Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
Starred by 87 users
Forked by 24 users
Languages Java 98.4% | Batchfile 1.6% | Java 98.4% | Batchfile 1.6%
GitHub
github.com › offbye › AndroidDownloadManger
GitHub - offbye/AndroidDownloadManger: A full feature Android Download Manger, not use android sdk download services, support android 2.2 above. · GitHub
When click a downloading Notification will go to the downloading task list. When a download task finished, it will pop in Notification bar with a ring alarm. ##3.Large file download support. This download manager is designed for downloading flv video files, it can download files more than 200M ...
Starred by 44 users
Forked by 27 users
Languages Java
GitHub
github.com › smanikandan14 › ThinDownloadManager
GitHub - smanikandan14/ThinDownloadManager: To download files and to avoid using DOWNLOAD_WITHOUT_NOTIFICATION permission if you are using Android's DownloadManager in your apps. · GitHub
Thin DownloadManager is an android library primary to download files and to avoid using DOWNLOAD_WITHOUT_NOTIFICATION permission when using Android provided DownloadManager in your application.
Starred by 790 users
Forked by 191 users
Languages Java
GitHub
github.com › lingochamp › FileDownloader
GitHub - lingochamp/FileDownloader: Multitask、MultiThread(MultiConnection)、Breakpoint-resume、High-concurrency、Simple to use、Single/NotSingle-process
Just create your own DownloadMgrInitialParams.InitCustomMaker and put those customized component to it, finally init the FileDownloader with it: FileDownloader#init · The restriction of background service has been tightened since Android 8.0, for more details, please refer to here. So, after Android 8.0, the download service will be a foreground service when start downloading during app is in background and you will see a notification with a title named "FileDownloader" start from FileDownloader 1.7.6.
Starred by 11.1K users
Forked by 2.2K users
Languages Java
GitHub
github.com › wlfcolin › file-downloader
GitHub - wlfcolin/file-downloader: FileDownloader, powerful http/https file download tool on Android · GitHub
// 1.create FileDownloadConfiguration.Builder Builder builder = new FileDownloadConfiguration.Builder(this); // 2.config FileDownloadConfiguration.Builder builder.configFileDownloadDir(Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "FileDownloader"); // config the download path // allow 3 download tasks at the same time, if not config, default is 2 builder.configDownloadTaskSize(3); // config retry download times when failed, if not config, default is 0 builder.configRetryDownloadTimes(5); // enable debug mode, if not config, default is false builder.configDebug
Starred by 387 users
Forked by 148 users
Languages Java
GitHub
github.com › joltup › rn-fetch-blob › issues › 181
Show Downloaded File and Notification in Android Downloads App. · Issue #181 · joltup/rn-fetch-blob
RNFetchBlob.fs.cp(this.state.filePath, newPath) .then(() => { if (Platform.OS === 'ios') { RNFetchBlob.ios.previewDocument(newPath) } else { RNFetchBlob.fs.scanFile([{ path: newPath, mime: 'application/pdf' }]) .then(() => { RNFetchBlob.android.addCompleteDownload({ title: `Invoice ${this.props.currentInvoiceNumber}`, description: 'desc', mime: 'application/pdf', path: newPath, showNotification: true, notification: true }) }) .catch((err) => { }) } }) .catch((err) => { })
Author joltup
GitHub
github.com › khushpanchal › Ketch
GitHub - khushpanchal/Ketch: An Android File downloader library based on WorkManager with pause and resume support. · GitHub
Request permission from user (required from Android 13 (API level 33)). Check out sample app for reference. ... ketch = Ketch.builder().setNotificationConfig( config = NotificationConfig( enabled = true, smallIcon = R.drawable.ic_launcher_foreground // It is required to pass the smallIcon for notification. ) ).build(this) Provide headers with network request. ketch.download(url, fileName, path, headers = headers, //Default: Empty hashmap )
Starred by 575 users
Forked by 65 users
Languages Kotlin
GitHub
gist.github.com › arleslie-zz › 2649921
Android Notification · GitHub
Download ZIP · Android Notification · Raw · gistfile1.java · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
GitHub
gist.github.com › regisd › 1762830
Android utility method to add a notification · GitHub
Download ZIP · Android utility method to add a notification · Raw · BaseActivity.java · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
GitHub
gist.github.com › aslamanver › f32a0bb8461c250d4a945e11f6771456
Android foreground service with notification alert · GitHub
<service android:name=".MyForegroundService" android:icon="@drawable/ic_notification" android:foregroundServiceType="location" android:label="MFS" /> if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { requestPermissions(new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 2000); } } ... This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below.
GitHub
github.com › vrsrohit › Android-Custom-Download-Manager
GitHub - vrsrohit/Android-Custom-Download-Manager
Basic Download Manager for android built using WorkManager and Coroutines. This can download multiple type of files in the background.
Author vrsrohit
GitHub
gist.github.com › ssi-anik › 67974fc7d82d3469f200
Android full application notification system · GitHub
Download ZIP · Android full application notification system · Raw · AppNotification.java · This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
GitHub
github.com › owncloud › android › issues › 1468
Upload/Download notification: show remaining time/number of files · Issue #1468 · owncloud/android
February 8, 2016 - Currently the notification of upload/download shows only progress. I would like to enhance this by also showing: remaining time (x/Y) to indicate how many files are left to process. This will only ...
Author owncloud
GitHub
github.com › nikhilbansal97 › CoroutineDownloader
GitHub - nikhilbansal97/CoroutineDownloader: Downloader that uses Kotlin Coroutines and channels
The app does not use the DownloadManager class hence the notifications are broken. Feel free to pick it up 😛 · Copyright 2019 Nikhil Bansal Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
Author nikhilbansal97
GitHub
github.com › elksa › android-retrofit-download-file
GitHub - elksa/android-retrofit-download-file: Downloading file from server with retrofit
Downloading file from server with retrofit. Contribute to elksa/android-retrofit-download-file development by creating an account on GitHub.
Author elksa
Stack Overflow
stackoverflow.com › questions › 28958736 › download-file-on-push-notification-android
Download file on Push Notification Android - Stack Overflow
February 19, 2018 - Than after you can download image in main Activity. https://github.com/greenrobot/EventBus · In same way you can show Notification as well and send event to MainActivity for download Image and show it. ... Sign up to request clarification or add additional context in comments. ... Find the answer to your question by asking. Ask question ... See similar questions with these tags.