Skip to content

Commit

Permalink
Merge pull request #546 from kennethshackleton/flexible-page-sizes
Browse files Browse the repository at this point in the history
Support compiling 16 KB-aligned shared libraries with Android NDK version r27 and higher.
  • Loading branch information
kennethshackleton authored Sep 1, 2024
2 parents b46a504 + 59eedb3 commit 7650b03
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions selekt-android-sqlcipher/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ android {
ndkVersion = "27.0.12077973"
defaultConfig {
minSdk = 21
@Suppress("UnstableApiUsage")
externalNativeBuild {
cmake {
arguments("-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON")
}
}
}
buildTypes {
debug {
Expand Down

0 comments on commit 7650b03

Please sign in to comment.