diff --git a/README.md b/README.md index f996e56..77fda99 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ We welcome contributions, to contribute to SQLCipher for Android, a [contributor Add a local reference to the local library and dependency: ```groovy -implementation files('libs/sqlcipher-android-4.5.7-release.aar') +implementation files('libs/sqlcipher-android-4.6.0-release.aar') implementation 'androidx.sqlite:sqlite:2.2.0' ``` or source a Community edition build from Maven Central: ```groovy -implementation 'net.zetetic:sqlcipher-android:4.5.7@aar' +implementation 'net.zetetic:sqlcipher-android:4.6.0@aar' implementation 'androidx.sqlite:sqlite:2.2.0' ``` diff --git a/build.gradle b/build.gradle index c524c8f..3300e32 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ project.ext { if(project.hasProperty('sqlcipherAndroidVersion') && "${sqlcipherAndroidVersion}") { libraryVersion = "${sqlcipherAndroidVersion}" } else { - libraryVersion = "4.5.7" + libraryVersion = "4.6.0" } minSdkVersion = 21 androidXSQLiteVersion = "2.2.0"