Skip to content

Commit

Permalink
Enable 16k compat for all samples.
Browse files Browse the repository at this point in the history
  • Loading branch information
DanAlbert committed Jul 11, 2024
1 parent b6492e3 commit 3a18f1d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ class AndroidApplicationConventionPlugin : Plugin<Project> {
defaultConfig {
minSdk = Versions.MIN_SDK
targetSdk = Versions.TARGET_SDK

externalNativeBuild {
cmake {
arguments.add("-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON")
}
}
}
compileOptions {
sourceCompatibility = Versions.JAVA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ class AndroidLibraryConventionPlugin : Plugin<Project> {
testOptions {
targetSdk = Versions.TARGET_SDK
}
externalNativeBuild {
cmake {
arguments.add("-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON")
}
}
}
compileOptions {
sourceCompatibility = Versions.JAVA
Expand Down

0 comments on commit 3a18f1d

Please sign in to comment.