Support Google Play 16 KB Page Size Requirement (#13470)

- See: https://developer.android.com/guide/practices/page-sizes#update-packaging
- Also, make min API uniform at 21 (from 16 and 23 in a few places)
This commit is contained in:
Matthew Zavislak
2025-07-31 16:12:54 -07:00
committed by GitHub
parent c5edf4bd5b
commit dc2c83c383
8 changed files with 28 additions and 4 deletions

View File

@@ -26,4 +26,9 @@ endif()
add_library(main SHARED
YourSourceHere.c
)
#https://developer.android.com/guide/practices/page-sizes#update-packaging
target_link_options(main PRIVATE "-Wl,-z,max-page-size=16384")
target_link_options(main PRIVATE "-Wl,-z,common-page-size=16384")
target_link_libraries(main PRIVATE SDL3::SDL3)