ThinDownloadManager


Source link: https://github.com/smanikandan14/ThinDownloadManager

ThinDownloadManager

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.

Why ?

There are few reasons why you might want to use this library.

  • There are situations where you wanted to download a file into application's sandboxed cache or files directory where no one else can access to. DownloadManager provided by android does not have facility to download directly to application's cache or files directory (/data/data//cache/ or /data/data//files/). It can only accept destination in external SDcard as download destination. And if you are not using application's external file directory as destination i.e (setDestinationInExternalFilesDir()) you have to have android.permission.WRITE_EXTERNAL_STORAGE

Most of the times we download using Android's DownloadManager to external files directory and upon successful completion move the downloaded file to the sandboxed application's cache/file directory to avoid writing a own download manager which is a bit tedious. This library is handy in such situations.

  • No additional permissions required. Any download initiated by your application using android DownloadManager would throw a progress notification on status bar letting user know that you are downloading a file. So you end up using setVisibleInDownloadsUi(false) & having this permission android.permission.DOWNLOAD_WITHOUT_NOTIFICATION. When users install your app, they would be shown this permission and it makes them scary not to install your app because you are downloading some files without user's notification. Why give a chance of user not installing your app for this permission. You definetly need this library in this case.

  • Volley - Google recommended Networking library for android doesn't have options to download a file.

Usuage

DownloadStatusListener (Deprecated)

  • Provides call back option to know when the download is completed, failed and reason for failure, and to know the progress of the download.
 //Callback when download is successfully completed
  void onDownloadComplete (int id);

//Callback if download is failed. Corresponding error code and
  //error messages are provided
  void onDownloadFailed (int id, int errorCode, String errorMessage);

//Callback provides download progress
  void onProgress (int id, long totalBytes, long downlaodedBytes, int progress);
 

DownloadStatusListenerV1

  • Provides call back option to know when the download is completed, failed and reason for failure, and to know the progress of the download. DownloadRequest is given back in the callback so that you can easily set some Object as context to download request and get the context object back from the request object.
 //Callback when download is successfully completed
  void onDownloadComplete(DownloadRequest downloadRequest);

//Callback if download is failed. Corresponding error code and
  //error messages are provided
  void onDownloadFailed(DownloadRequest downloadRequest, int errorCode, String errorMessage);

 //Callback provides download progress
  void onProgress(DownloadRequest downloadRequest, long totalBytes, long downloadedBytes, int progress);
 

DownloadRequest

  • Takes all the necessary information required for download.

  • Download URI, Destination URI.

  • Set Priority for request as HIGH or MEDIUM or LOW.

  • Takes Callback listener DownloadStatusListener

  • Use custom Http Headers for a download request

  • Resumable a download if network connection drops or download is paused.

  • You can set a Retry Policy

    Uri downloadUri = Uri.parse("http://tcrn.ch/Yu1Ooo1");
    
     Uri destinationUri = Uri.parse(this.getExternalCacheDir().toString()+"/test.mp4");
    
     DownloadRequest downloadRequest = new DownloadRequest(downloadUri)
    
    .addCustomHeader("Auth-Token", "YourTokenApiKey")
    
    .setRetryPolicy(new DefaultRetryPolicy())
    
    .setDestinationURI(destinationUri).setPriority(DownloadRequest.Priority.HIGH)
    
    .setDownloadContext(downloadContextObject)//Optional
    
    .setDownloadListener(new DownloadStatusListener() {
    
     @Override
    
     public void onDownloadComplete(int id) {
    
      
    }
    
      @Override
    
     public void onDownloadFailed(int id, int errorCode, String errorMessage) {
    
      
    }
    
      @Override
    
     public void onProgress(int id, long totalBytes, long downlaodedBytes, int progress)) {
    
      
    }
    
    }
    );
     

ThinDownloadManager

  • The number of threads used to perform parallel download is determined by the available processors on the device. Uses Runtime.getRuntime().availableProcessors() api.

    private ThinDownloadManager downloadManager; .....  downloadManager = new ThinDownloadManager();
      .... 
  • To start a download use add( DownloadRequest request)

    int downloadId = downloadManager.add(downloadRequest);
    
  • To cancel a particular download use cancel(int downloadId) by passing download id.

    • Returns 1 if successfull cancelled.
    • Returns -1 if supplied download id is not found.
    int status = downloadManager.cancel(downloadId);
    
  • To cancel all running requests use cancelAll()

    downloadManager.cancelAll();
    
  • To query for a particular download use query(int downloadId)

    The possible status could be

    • STATUS_PENDING
    • STATUS_STARTED
    • STATUS_RUNNING
    int status = downloadManager.query(downloadId);
    
  • To pause a download in progress. The download request has to be marked as setDownloadResumable to true

    downloadManager.pause(downloadId)
  • To release all the resources used by download manager use release().

    downloadManager.release();
    

No Permissions Required

  • Unless if you specify download destination to be in external public SDCard location.You might need android.permission.WRITE_EXTERNAL_STORAGE permission.

Setup

Include below line your build.gradle:

dependencies {

  compile 'com.mani:ThinDownloadManager:1.3.0' 
}

Make sure you included jcenter() in your repositories section.

Download

  • The source code of sample app code is available for you to play around and the app itself is available for download from play store :

  • Sample app demonstrates with 4 thread pool size and download three different formats of files jpg, mp3, mp4.
  • The files are downloaded to applications sandboxed files directory. */data/data//files.

Credits

https://android.googlesource.com/platform/packages/providers/DownloadProvider/

NOTE: Android's DownloadManager has plenty of features which is not available in ThinDownloadManager. For ex. pause and continue download when network connectivity changes.So analyse your requirement thoroughly and decide which one to use.

https://www.virag.si/2015/01/publishing-gradle-android-library-to-jcenter/ Steps for uploading to bintray.

License

 Copyright 2013 Mani Selvaraj
Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.  You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License. 

Resources

Quick Android Review Kit - This tool is designed to look for several security related Android application vulnerabilities, either in source code or packaged APKs. The tool is also capable of creating "Proof-of-Concept" deployable APKs and/or ADB commands, capable of exploiting many of the vulnerabilities it finds. There is no need to root the test device, as this tool focuses on vulnerabilities that can be exploited under otherwise secure conditions.

An interactive view with water waves flowing like in a washing machine.

A Pin view widget for Android.

PinView has a feature that allows you to find out when they have completed all parameters. Support for Android 3.0 and up. It supports portrait and landscape mode, saving the state.

A ToggleLayout that can be used in setting interface.

An opencore amr codec JNI wrapper with explanation and one solution for packaging amr audio files.

JConditions is an extension for JUnit framework, which allows to mark test methods with specific conditional annotations. It helps to keep clean your test methods and prevents a lot of unnecessary code.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes