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'