diff --git a/.idea/misc.xml b/.idea/misc.xml index 7e15d9d..b0a270f 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -27,7 +27,7 @@ - + diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..8920eb9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: android +android: + components: + - tools # to get the new `repository-11.xml` + - tools # see https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943) + - platform-tools + - build-tools-25.0.2 + - android-25 + +script: + - ./gradlew build connectedCheck \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 727f628..5f31ae4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 25 - buildToolsVersion "25.0.1" + buildToolsVersion "25.0.2" defaultConfig { applicationId "net.thauvin.erik.android.tesremoteprogrammer" @@ -29,14 +29,14 @@ dependencies { testCompile 'junit:junit:4.12' - compile 'com.android.support:support-v13:25.2.0' - compile 'com.android.support:appcompat-v7:25.2.0' + compile 'com.android.support:support-v13:25.3.1' + compile 'com.android.support:appcompat-v7:25.3.1' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" compile 'org.jetbrains.anko:anko-sdk23:0.9.1' compile 'org.jetbrains.anko:anko-appcompat-v7:0.9.1' compile 'org.jetbrains.anko:anko-support-v4:0.9.1' compile 'org.jetbrains.anko:anko-design:0.9.1' - compile 'com.android.support:design:25.2.0' + compile 'com.android.support:design:25.3.1' compile group: 'com.google.code.gson', name: 'gson', version: '2.7' // https://github.com/JakeWharton/ViewPagerIndicator