Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #115 from StefMa/feature/update_deps_and_stuff
Browse files Browse the repository at this point in the history
Update deps and stuff
  • Loading branch information
passsy authored Sep 27, 2017
2 parents 1c78acd + 710f7a5 commit 85e7b0e
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ android:
- tools

# The BuildTools version used by your project
- build-tools-25.0.2
- build-tools-26.0.1

# The SDK version used to compile your project
- android-22
- android-25
- android-26

# Additional components
- extra-google-google_play_services
Expand Down
20 changes: 14 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
}
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
Expand All @@ -24,14 +25,21 @@ ext {
VERSION_NAME = "0.8.1-SNAPSHOT"
VERSION_CODE = 6
MIN_SDK_VERSION = 14
TARGET_SDK_VERSION = 25
COMPILE_SDK_VERSION = 25
BUILD_TOOLS_VERSION = '25.0.2'
// If you change the SDK version don't forgot to update .travis.yml
TARGET_SDK_VERSION = 26
COMPILE_SDK_VERSION = 26
// If you change the build tools version don't forgot to update .travis.yml
BUILD_TOOLS_VERSION = '26.0.1'

supportLibraryVersion = '25.2.0'
supportLibraryVersion = '26.0.0'
// compositeAndroidVersion should be always the same version as the supportLib version
// Since composite is not up to date we can't use the latest one
compositeAndroidVersion = supportLibraryVersion

bintrayVersion = '0.5.0'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
assertjVersion = '2.5.0'
mockitoVersion = '2.10.0'
assertjVersion = '2.8.0'
supportTestVersion = '1.0.1'
espressoVersion = '3.0.1'
}
10 changes: 4 additions & 6 deletions plugin-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ android {
targetSdkVersion TARGET_SDK_VERSION
versionCode 1
versionName "1.0"

testInstrumentationRunner "net.grandcentrix.thirtyinch.plugin_test.TestRunner"

}
buildTypes {
release {
Expand All @@ -31,8 +29,8 @@ dependencies {
compile "com.pascalwelsch.compositeandroid:activity:$supportLibraryVersion"
compile "com.pascalwelsch.compositeandroid:fragment:$supportLibraryVersion"

androidTestCompile "com.android.support:appcompat-v7:$supportLibraryVersion"
androidTestCompile 'com.android.support.test:runner:0.5';
androidTestCompile 'com.android.support.test:rules:0.5';
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2';
androidTestCompile "com.android.support:support-annotations:$supportLibraryVersion"
androidTestCompile "com.android.support.test:runner:$supportTestVersion";
androidTestCompile "com.android.support.test:rules:$supportTestVersion";
androidTestCompile "com.android.support.test.espresso:espresso-core:$espressoVersion";
}
4 changes: 2 additions & 2 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ android {

dependencies {
compile project(':thirtyinch')
provided "com.pascalwelsch.compositeandroid:activity:$supportLibraryVersion"
provided "com.pascalwelsch.compositeandroid:fragment:$supportLibraryVersion"
provided "com.pascalwelsch.compositeandroid:activity:$compositeAndroidVersion"
provided "com.pascalwelsch.compositeandroid:fragment:$compositeAndroidVersion"
}

publish {
Expand Down
4 changes: 2 additions & 2 deletions rx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ android {

dependencies {
compile project(':thirtyinch')
compile 'io.reactivex:rxjava:1.2.3'
compile 'com.artemzin.rxjava:proguard-rules:1.2.3.0'
compile 'io.reactivex:rxjava:1.3.2'
compile 'com.artemzin.rxjava:proguard-rules:1.2.7.0'
provided "com.android.support:support-annotations:$supportLibraryVersion"

testCompile "junit:junit:$junitVersion"
Expand Down
2 changes: 1 addition & 1 deletion rx2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {

dependencies {
compile project(':thirtyinch')
compile 'io.reactivex.rxjava2:rxjava:2.0.3'
compile 'io.reactivex.rxjava2:rxjava:2.1.4'
provided "com.android.support:support-annotations:$supportLibraryVersion"

testCompile "junit:junit:$junitVersion"
Expand Down
2 changes: 1 addition & 1 deletion thirtyinch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
testCompile "org.mockito:mockito-core:$mockitoVersion"
testCompile "org.assertj:assertj-core:$assertjVersion"

androidTestCompile 'com.android.support.test:runner:0.5'
androidTestCompile "com.android.support.test:runner:$supportTestVersion"
androidTestCompile "org.mockito:mockito-core:$mockitoVersion"
}

Expand Down

0 comments on commit 85e7b0e

Please sign in to comment.