-
Notifications
You must be signed in to change notification settings - Fork 2
Authenticator App: Update SQLCipher dependency to ensure 16KB support for library #149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
7bf9dc1
af97ee4
1fc6d32
139b807
06b6da8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -144,7 +144,7 @@ androidx-lifecycle-runtime-ktx = { module = "androidx.lifecycle:lifecycle-runtim | |
| androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycleRuntimeKtx" } | ||
| androidx-ui-graphics = { module = "androidx.compose.ui:ui-graphics" } | ||
| androidx-sqlite = { group = "androidx.sqlite", name = "sqlite", version = "2.5.2" } | ||
| sqlcipher = { group = "net.zetetic", name = "android-database-sqlcipher", version = "4.5.4" } | ||
| sqlcipher = { group = "net.zetetic", name = "sqlcipher-android", version = "4.12.0" } | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This version change is the primary change which updates the library to be 16KB compatible. |
||
| commons-codec = { group = "commons-codec", name = "commons-codec", version = "1.15" } | ||
| barcode-scanning = { module = "com.google.mlkit:barcode-scanning", version.ref = "barcodeScanning" } | ||
| play-services-auth-blockstore = { module = "com.google.android.gms:play-services-auth-blockstore", version.ref = "playServicesAuthBlockstore" } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,12 @@ android { | |
| enableUnitTestCoverage = true | ||
| } | ||
| } | ||
|
|
||
| packaging { | ||
| jniLibs { | ||
| pickFirsts.add("**/*.so") | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was added because of a duplicate dependency being added which fails the build. |
||
| } | ||
| } | ||
| } | ||
|
|
||
| dependencies { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is as part of the migration suggested by the
sqlcipherlibrary.