Skip to content

Commit 2837494

Browse files
committed
more updated deps for examples
1 parent 554fd36 commit 2837494

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cache:
1111
env:
1212
global:
1313
- ANDROID_API_LEVEL=24
14-
- ANDROID_BUILD_TOOLS_VERSION=25.0.0
14+
- ANDROID_BUILD_TOOLS_VERSION=25.0.2
1515
- ANDROID_ABI=armeabi-v7a
1616
- ADB_INSTALL_TIMEOUT=20 # minutes (2 minutes by default)
1717

examples/DaoExample/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ apply plugin: 'com.android.application'
1414
apply plugin: 'org.greenrobot.greendao'
1515

1616
android {
17-
buildToolsVersion '25.0.0'
17+
buildToolsVersion '25.0.2'
1818
compileSdkVersion 25
1919

2020
defaultConfig {
@@ -33,13 +33,13 @@ greendao {
3333
}
3434

3535
dependencies {
36-
compile 'org.greenrobot:greendao:3.2.0'
36+
compile 'org.greenrobot:greendao:3.2.2'
3737

3838
// This is only needed if you want to use encrypted databases
39-
compile 'net.zetetic:android-database-sqlcipher:3.5.4'
39+
compile 'net.zetetic:android-database-sqlcipher:3.5.6'
4040

41-
compile 'com.android.support:appcompat-v7:25.0.1'
42-
compile 'com.android.support:recyclerview-v7:25.0.1'
41+
compile 'com.android.support:appcompat-v7:25.3.1'
42+
compile 'com.android.support:recyclerview-v7:25.3.1'
4343
}
4444

4545
uploadArchives.enabled = false

examples/RxDaoExample/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ apply plugin: 'com.android.application'
1414
apply plugin: 'org.greenrobot.greendao'
1515

1616
android {
17-
buildToolsVersion '25.0.0'
17+
buildToolsVersion '25.0.2'
1818
compileSdkVersion 25
1919

2020
defaultConfig {
@@ -31,17 +31,17 @@ greendao {
3131
}
3232

3333
dependencies {
34-
compile 'org.greenrobot:greendao:3.2.0'
34+
compile 'org.greenrobot:greendao:3.2.2'
3535

3636
// This is only needed if you want to use encrypted databases
37-
compile 'net.zetetic:android-database-sqlcipher:3.5.4'
37+
compile 'net.zetetic:android-database-sqlcipher:3.5.6'
3838

39-
compile 'com.jakewharton.rxbinding:rxbinding:0.4.0'
39+
compile 'com.jakewharton.rxbinding:rxbinding:1.0.1'
4040
compile 'io.reactivex:rxandroid:1.2.1'
41-
compile 'io.reactivex:rxjava:1.1.8'
41+
compile 'io.reactivex:rxjava:1.2.9'
4242

43-
compile 'com.android.support:appcompat-v7:25.0.1'
44-
compile 'com.android.support:recyclerview-v7:25.0.1'
43+
compile 'com.android.support:appcompat-v7:25.3.1'
44+
compile 'com.android.support:recyclerview-v7:25.3.1'
4545
}
4646

4747
uploadArchives.enabled = false

0 commit comments

Comments
 (0)