From 0cce6c004181eeec9b900c9bd2ef47d7f0c23893 Mon Sep 17 00:00:00 2001 From: Markus Date: Wed, 29 Apr 2020 23:34:29 +0200 Subject: [PATCH] upgrade example and test dependencies to 3.3.0 --- build.gradle | 2 +- examples/DaoExample/build.gradle | 4 ++-- examples/RxDaoExample/build.gradle | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index a6df9281b..4f6471226 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ ext { androidPlugin: 'com.android.tools.build:gradle:3.5.3', // Used only in tests, should point to the latest *published* version (not relevant to publishing) - greendaoPlugin: 'org.greenrobot:greendao-gradle-plugin:3.2.2' + greendaoPlugin: 'org.greenrobot:greendao-gradle-plugin:3.3.0' ] } diff --git a/examples/DaoExample/build.gradle b/examples/DaoExample/build.gradle index fd15dc4bc..bca7f4265 100644 --- a/examples/DaoExample/build.gradle +++ b/examples/DaoExample/build.gradle @@ -7,7 +7,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.5.3' - classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' + classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' } } @@ -42,7 +42,7 @@ greendao { } dependencies { - implementation 'org.greenrobot:greendao:3.2.2' + implementation 'org.greenrobot:greendao:3.3.0' // optional: add if you want to use encrypted databases, see the App class for details // implementation 'net.zetetic:android-database-sqlcipher:3.5.6' diff --git a/examples/RxDaoExample/build.gradle b/examples/RxDaoExample/build.gradle index 1f6c4f413..7477549ba 100644 --- a/examples/RxDaoExample/build.gradle +++ b/examples/RxDaoExample/build.gradle @@ -7,7 +7,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:3.5.3' - classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' + classpath 'org.greenrobot:greendao-gradle-plugin:3.3.0' } } @@ -36,7 +36,7 @@ greendao { } dependencies { - implementation 'org.greenrobot:greendao:3.2.2' + implementation 'org.greenrobot:greendao:3.3.0' // optional: add if you want to use encrypted databases, see the App class for details // implementation 'net.zetetic:android-database-sqlcipher:3.5.6'