Skip to content

Releases: gotev/android-upload-service

android-upload-service-2.0.1

10 Feb 20:23
Compare
Choose a tag to compare

Improvements:

  • Added setUtf8Charset() method to MultipartUploadRequest to be able to use non-latin characters in file names and parameters
  • Added utility method setBasicAuth("username", "password") to multipart and binary upload request builders, to easily set the proper Authentication header for HTTP Basic Authentication requests. For security reasons, you should use basic auth only on HTTPS connections
  • Extended node.js demo server provided in the examples by adding HTTP basic auth endpoints for both multipart and binary upload types
  • Small fixes

android-upload-service-2.0

22 Jan 19:17
Compare
Choose a tag to compare

Improvements:

Migrating to 2.0 from 1.6:

  • Library namespace has been changed from com.alexbbb to net.gotev to be able to deploy artifacts also on Maven Central. Full story here: #84
  • To stop all the uploads, use UploadService.stopAllUploads() instead of UploadService.stopCurrentUpload()
  • The UploadServiceBroadcastReceiver onCompleted signature has been changed from:
public void onCompleted(String uploadId, int serverResponseCode, int serverResponseCode,
                        String serverResponseMessage)

to

public void onCompleted(String uploadId, int serverResponseCode, int serverResponseCode,
                        byte[] serverResponseBody)

to handle better server responses. Before it handled only utf 8 responses terminated with a new line character. That was limitating. To achieve the old 1.6 behaviour, you need to add:

String serverResponseMessage = new String(serverResponseBody);

in your implementation.

  • When an upload task is cancelled, you will not receive a java.net.ProtocolException in your UploadServiceBroadcastReceiver onError method anymore. To add your business logic when the user cancels an upload, override the new onCancelled(String uploadId) method in your broadcast receiver implementation.

android-upload-service-1.6

03 Dec 21:40
Compare
Choose a tag to compare

This version is focused on making the library easier to use in external projects, to provide better feedback to the developers and be able to write less and more readable code to accomplish the same tasks.

Improvements:

  • MultipartUploadRequest and BinaryUploadRequest method calls are now chainable
  • node.js demo server provides full request info for both HTTP/Multipart and Binary uploads, to make debugging easier
  • Demo Android App now has a file picker, custom launcher and notification icons
  • Improved JavaDocs, which now are available here: http://alexbbb.github.io/android-upload-service/javadoc/
  • Updated to gradle 1.5.0
  • Updated to com.android.support:appcompat-v7:23.1.1
  • Updated to com.android.support:support-v4:23.1.1
  • It's possible to not have any notification in the Android Notification Center, simply by not invoking setNotificationConfig when you build a MultipartUploadRequest or a BinaryUploadRequest
  • When you add a file to an upload request, a FileNotFoundException will be immediately thrown if it doesn't exist

Migrating to 1.6 from previous releases:

To clean up the API, some breaking changes have been made from the previous releases, but you'll need less than 5 minutes to reflect them in your code. I suggest you to do that now, so it will be easier to update to the next releases in the future.

  • 4d6c116 AbstractUploadServiceReceiver is now called UploadServiceBroadcastReceiver. This was done because there weren't any abstract methods left in the class after modifications in the previous releases, so the name needed to be changed
  • 25b2591 The notification configuration is now in the UploadNotificationConfig class, to allow more customizations. Check updated examples in the README.md and in the demo app
  • All the deprecated methods have been removed:
    • Instead of using UploadService.startUpload(request); use request.startUpload();
    • Instead of using new UploadRequest use new MultipartUploadRequest

android-upload-service-1.5

28 Nov 10:53
Compare
Choose a tag to compare

New features:

  • setting to clear the notification when the user taps on it

Improvements:

  • improvements to README.md file thanks to @YoungjaeKim
  • added helper console output in the node.js demo server
  • resolved Android JavaDoc issues
  • added deprecation tags where needed
  • minor fixes

android-upload-service-1.4

15 Oct 15:41
Compare
Choose a tag to compare

New features:

  • Binary Upload + node.js server example implementation (thanks to @PanayotCankov)
  • Notification ringtone (thanks to @jenorish)

Improvements:

  • Added increasing retry delay for failed upload attempts (thanks to @exuvo)
  • Use latest gradle version to build library
  • Migrated core library project and demo App to Android Studio. Removed all Eclipse + ADT project files.

android-upload-service-1.3.1

30 Aug 12:03
Compare
Choose a tag to compare

Improvements:

  • Fixed gradle compilation and execution bugs in library and demo app

android-upload-service-1.3

27 Aug 09:02
Compare
Choose a tag to compare

New features:

  • Automatic upload retry
  • Support for maven and gradle dependency management
  • Launch custom intent when tapping on the notification
  • Cancel current upload task
  • Set custom user agent

Enhancements:

  • The total length of the upload request gets sent to the server before starting the upload. This means better interaction with servers which does not support chunked encoding or needs to know the total upload length in advance to better handle the request, as Akamai servers for example
  • Minor fixes

Full solved issues list: https://github.com/alexbbb/android-upload-service/issues?q=milestone%3A1.3+is%3Aclosed

android-upload-service-1.2

28 Jan 14:22
Compare
Choose a tag to compare

New features:

  • Custom namespace for UploadRequest intent

Improvements:

  • Updated project settings to Android API 21
  • Updated android support library jar
  • Fixed upload buffer size
  • Read server response body and return its value in listener's onCompleted
  • Fixed: Implicit intents with startService are not safe
  • Fix notification for android v2
  • Correctly manage connection keep-alive to avoid broken pipe errors
  • It's possible to use AbstractUploadServiceReceiver in any given Context (Activity, Service,..)

android-upload-service-1.1

23 Jun 12:41
Compare
Choose a tag to compare

New features:

  • Support custom HTTP method in addition to the standard (POST)
  • Upload IDs, so that broadcasts for different uploads can be identified

Improvements:

  • Updated project settings to Android API 19
  • Updated android support library jar
  • Added gradle build system files
  • Improved README.MD documentation and added simple server-side PHP script for tests
  • Added missing JavaDocs
  • Don't trust self-signed SSL certificates by default
  • Removed extra boundary bytes at the end of the file upload
  • Only add content type for each file if specified
  • Use wake lock to keep upload running while the device is sleeping
  • Use startForeground and stopForeground to lower the risks of being killed by the system during upload
  • Only show success notification if response code from the server is 2XX
  • Use different notification ID for the final notification
  • Use unique ID for notifications

Special thanks to @eliasnaur for the contribution

android-upload-service-1.0.2

30 Sep 15:30
Compare
Choose a tag to compare