diff --git a/README.md b/README.md index e3870ec..3b497d3 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.15.0-release.aar') +implementation files('libs/sqlcipher-android-4.17.0-release.aar') implementation 'androidx.sqlite:sqlite:2.6.2' ``` or source a Community edition build from Maven Central: ```groovy -implementation 'net.zetetic:sqlcipher-android:4.15.0@aar' +implementation 'net.zetetic:sqlcipher-android:4.17.0@aar' implementation 'androidx.sqlite:sqlite:2.6.2' ``` diff --git a/build.gradle b/build.gradle index 9ae5ce4..6975f17 100644 --- a/build.gradle +++ b/build.gradle @@ -33,7 +33,7 @@ project.ext { if(project.hasProperty('sqlcipherAndroidVersion') && "${sqlcipherAndroidVersion}") { libraryVersion = "${sqlcipherAndroidVersion}" } else { - libraryVersion = "4.16.0" + libraryVersion = "4.17.0" } minSdkVersion = 23 androidXSQLiteVersion = "2.6.2"