Skip to content

Latest commit

 

History

History
executable file
·
32 lines (25 loc) · 1.4 KB

README.md

File metadata and controls

executable file
·
32 lines (25 loc) · 1.4 KB

Upload Image in Background

Core Database Reference by Google Developer

##Require Library

compile 'io.realm:realm-android:0.86.0'
compile 'com.jakewharton:butterknife:6.0.0'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'io.reactivex:rxandroid:1.1.0'
compile 'com.facebook.fresco:fresco:0.9.0'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.kbeanie:image-chooser-library:1.5.2@aar'
compile 'com.android.support:recyclerview-v7:23.1.1'

How to Work?

This Example uplaod MultiPart File(Image) upload to server useing by Retrofit.also uplaod in background if you are exit the application to runnig uploading to the server. *Uploading Start when you have to long click on listview image.

####Screen Shot screen shot 2016-05-03 at 3 29 07 pm screen shot 2016-05-03 at 3 28 29 pm screen shot 2016-05-03 at 3 33 05 pm

####Implement to your poject *In api.java Class in this Example.

@Multipart
@POST("/upload")
Observable<image> getImageName(@Part("mimage") ProgressedTypedFile attachments);

##Idea by http://www.socialinfotech.com/