Skip to content

Commit

Permalink
released 3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gotev committed Mar 18, 2017
1 parent 5195e25 commit 8959ae4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
10 changes: 4 additions & 6 deletions examples/app/demoapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'android-apt'
apply plugin: 'com.getkeepsafe.dexcount'

def sdkVersion = 25;
def libraryVersion = "3.2.2"
def libraryVersion = "3.2.3"

android {
compileSdkVersion sdkVersion
Expand All @@ -13,7 +13,7 @@ android {
applicationId "net.gotev.uploadservicedemo"
minSdkVersion 16
targetSdkVersion sdkVersion
versionCode 17
versionCode 18
versionName libraryVersion
}
buildTypes {
Expand Down Expand Up @@ -52,11 +52,9 @@ dependencies {
compile 'com.nononsenseapps:filepicker:4.0.0-beta1'
compile 'net.gotev:recycleradapter:1.5.2'

/*
compile "net.gotev:uploadservice:${libraryVersion}"
/*compile "net.gotev:uploadservice:${libraryVersion}"
compile "net.gotev:uploadservice-okhttp:${libraryVersion}"
compile "net.gotev:uploadservice-ftp:${libraryVersion}"
*/
compile "net.gotev:uploadservice-ftp:${libraryVersion}"*/

//comment the previous lines and uncomment the next ones for development (it uses the local libs)
compile project(':uploadservice')
Expand Down
2 changes: 1 addition & 1 deletion uploadservice-ftp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This module adds FTP upload ([RFC959](https://tools.ietf.org/html/rfc959)) capab

## Setup
```groovy
compile 'net.gotev:uploadservice-ftp:3.2.2'
compile 'net.gotev:uploadservice-ftp:3.2.3'
```

## Minimal example
Expand Down
4 changes: 2 additions & 2 deletions uploadservice-ftp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def projectName = "android-upload-service-ftp"
def projectDesc = "FTP Upload implementation for Android Upload Service."
def projectGroup = "net.gotev"
group = projectGroup
version = "3.2.2"
version = "3.2.3"

def sdkVersion = 25;

Expand All @@ -19,7 +19,7 @@ android {
defaultConfig {
minSdkVersion 10
targetSdkVersion sdkVersion
versionCode 10
versionCode 11
versionName version
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions uploadservice-okhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def projectName = "android-upload-service-okhttp"
def projectDesc = "OkHttp stack implementation for Android Upload Service."
def projectGroup = "net.gotev"
group = projectGroup
version = "3.2.2"
version = "3.2.3"

def sdkVersion = 25;

Expand All @@ -19,7 +19,7 @@ android {
defaultConfig {
minSdkVersion 10
targetSdkVersion sdkVersion
versionCode 7
versionCode 8
versionName version
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions uploadservice/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def projectName = "android-upload-service"
def projectDesc = "Easily upload files in the background with automatic Android Notification Center progress indication."
def projectGroup = "net.gotev"
group = projectGroup
version = "3.2.2"
version = "3.2.3"

def sdkVersion = 25;

Expand All @@ -19,7 +19,7 @@ android {
defaultConfig {
minSdkVersion 10
targetSdkVersion sdkVersion
versionCode 23
versionCode 24
versionName version
}
buildTypes {
Expand Down

0 comments on commit 8959ae4

Please sign in to comment.