diff --git a/.travis.yml b/.travis.yml index d05d416a6..c77e97abb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ cache: env: global: - ANDROID_API_LEVEL=24 - - ANDROID_BUILD_TOOLS_VERSION=25.0.0 + - ANDROID_BUILD_TOOLS_VERSION=25.0.2 - ANDROID_ABI=armeabi-v7a - ADB_INSTALL_TIMEOUT=20 # minutes (2 minutes by default) diff --git a/examples/DaoExample/build.gradle b/examples/DaoExample/build.gradle index 8b19b4afa..c3e06cd1d 100644 --- a/examples/DaoExample/build.gradle +++ b/examples/DaoExample/build.gradle @@ -14,7 +14,7 @@ apply plugin: 'com.android.application' apply plugin: 'org.greenrobot.greendao' android { - buildToolsVersion '25.0.0' + buildToolsVersion '25.0.2' compileSdkVersion 25 defaultConfig { @@ -33,13 +33,13 @@ greendao { } dependencies { - compile 'org.greenrobot:greendao:3.2.0' + compile 'org.greenrobot:greendao:3.2.2' // This is only needed if you want to use encrypted databases - compile 'net.zetetic:android-database-sqlcipher:3.5.4' + compile 'net.zetetic:android-database-sqlcipher:3.5.6' - compile 'com.android.support:appcompat-v7:25.0.1' - compile 'com.android.support:recyclerview-v7:25.0.1' + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:recyclerview-v7:25.3.1' } uploadArchives.enabled = false diff --git a/examples/RxDaoExample/build.gradle b/examples/RxDaoExample/build.gradle index a63a7ec21..1b4ef1a86 100644 --- a/examples/RxDaoExample/build.gradle +++ b/examples/RxDaoExample/build.gradle @@ -14,7 +14,7 @@ apply plugin: 'com.android.application' apply plugin: 'org.greenrobot.greendao' android { - buildToolsVersion '25.0.0' + buildToolsVersion '25.0.2' compileSdkVersion 25 defaultConfig { @@ -31,17 +31,17 @@ greendao { } dependencies { - compile 'org.greenrobot:greendao:3.2.0' + compile 'org.greenrobot:greendao:3.2.2' // This is only needed if you want to use encrypted databases - compile 'net.zetetic:android-database-sqlcipher:3.5.4' + compile 'net.zetetic:android-database-sqlcipher:3.5.6' - compile 'com.jakewharton.rxbinding:rxbinding:0.4.0' + compile 'com.jakewharton.rxbinding:rxbinding:1.0.1' compile 'io.reactivex:rxandroid:1.2.1' - compile 'io.reactivex:rxjava:1.1.8' + compile 'io.reactivex:rxjava:1.2.9' - compile 'com.android.support:appcompat-v7:25.0.1' - compile 'com.android.support:recyclerview-v7:25.0.1' + compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:recyclerview-v7:25.3.1' } uploadArchives.enabled = false