Skip to content

Commit

Permalink
more updated deps for examples
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Apr 5, 2017
1 parent 554fd36 commit 2837494
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
10 changes: 5 additions & 5 deletions examples/DaoExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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
14 changes: 7 additions & 7 deletions examples/RxDaoExample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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

0 comments on commit 2837494

Please sign in to comment.