Skip to content

Commit

Permalink
Some update housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusja committed Oct 25, 2016
1 parent 9357f5d commit 5a2032e
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
applicationId "com.github.mjdev.usbfileman"
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Expand All @@ -26,8 +26,8 @@ android {
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.0.0'
compile project(':libaums')
compile project(':httpserver')
compile project(':storageprovider')
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
classpath 'com.android.tools.build:gradle:2.2.2'

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
8 changes: 4 additions & 4 deletions httpserver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ configurations {
}

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Expand All @@ -30,6 +30,6 @@ dependencies {
javadocDeps 'com.nanohttpd:nanohttpd-webserver:2.2.0'

compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-annotations:23.1.1'
compile 'com.android.support:support-annotations:25.0.0'
compile project(':libaums')
}
10 changes: 5 additions & 5 deletions libaums/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ ext {
}

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Expand All @@ -52,8 +52,8 @@ android {

dependencies {
testCompile 'junit:junit:4.12'
compile 'com.android.support:support-annotations:23.1.1'
javadocDeps 'com.android.support:support-annotations:23.1.1'
compile 'com.android.support:support-annotations:25.0.0'
javadocDeps 'com.android.support:support-annotations:25.0.0'
}

if("$System.env.UPLOAD_BINTRAY".equalsIgnoreCase("1")) {
Expand Down
6 changes: 3 additions & 3 deletions storageprovider/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
Expand Down

0 comments on commit 5a2032e

Please sign in to comment.