Skip to content

Commit bd99668

Browse files
committed
released 3.5.1
1 parent b5800f2 commit bd99668

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

manifest.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ ext {
99
library_licenses = ["Apache-2.0"]
1010
library_licenses_url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
1111
library_project_group = 'net.gotev'
12-
library_version = '3.5.0'
12+
library_version = '3.5.1'
1313
version_code = 31
1414
min_sdk = 18
1515
target_sdk = 28
1616
demo_app_id = 'net.gotev.uploadservicedemo'
1717

1818
// Gradle classpath dependencies versions
1919
kotlin_version = '1.3.11'
20-
gradle_version = '3.3.0'
20+
gradle_version = '3.3.1'
2121
maven_gradle_version = '2.1'
2222
gradle_versions_plugin_version = '0.20.0'
2323
bintray_plugin_version = '1.7'

release

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/bash -e
2+
./gradlew :uploadservice:clean :uploadservice:bintrayUpload
3+
./gradlew :uploadservice-ftp:clean :uploadservice-ftp:bintrayUpload
4+
./gradlew :uploadservice-okhttp:clean :uploadservice-okhttp:bintrayUpload

release-uploadservice

Lines changed: 0 additions & 2 deletions
This file was deleted.

release-uploadservice-ftp

Lines changed: 0 additions & 2 deletions
This file was deleted.

release-uploadservice-okhttp

Lines changed: 0 additions & 2 deletions
This file was deleted.

uploadservice/src/main/java/net/gotev/uploadservice/UploadService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public final class UploadService extends Service {
118118
* If the upload Tasks report more frequently, we will throttle notifications.
119119
* We aim for 6 updates per second.
120120
*/
121-
protected static final long PROGRESS_REPORT_INTERVAL = 166;
121+
public static long PROGRESS_REPORT_INTERVAL = 166;
122122

123123
// constants used in the intent which starts this service
124124
private static final String ACTION_UPLOAD_SUFFIX = ".uploadservice.action.upload";

0 commit comments

Comments
 (0)