16KB page size support

This commit is contained in:
Harish Vishwakarma 2026-01-14 23:22:20 +05:30
parent 2d432815b6
commit 9fd1e8daac
10 changed files with 21 additions and 3 deletions

2
.gitignore vendored
View File

@ -21,3 +21,5 @@ pep-api-postman.json
# Keystore files - keep these secure and share privately
*.keystore
*.jks
ZekoChatKey
app/zekochat.keystore

8
.idea/markdown.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MarkdownSettings">
<option name="previewPanelProviderInfo">
<ProviderInfo name="Compose (experimental)" className="com.intellij.markdown.compose.preview.ComposePanelProvider" />
</option>
</component>
</project>

View File

@ -72,8 +72,8 @@ android {
applicationId = "com.zekochat"
minSdk = 24
targetSdk = 35
versionCode = Integer.parseInt("001_003_106".replace("_", ""), 10)
versionName = "1.3.6a"
versionCode = Integer.parseInt("001_003_107".replace("_", ""), 10)
versionName = "1.3.6b"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {

View File

@ -58,6 +58,10 @@
<meta-data
android:name="com.google.firebase.messaging.default_notification_\color"
android:resource="@color/notification_background" />
<!-- Support for 16 KB page size devices (required for Google Play) -->
<meta-data
android:name="android.app.16kb_page_size_supported"
android:value="true" />
<service
android:name=".c2dm.HandlerService"

View File

@ -40,4 +40,8 @@ target_link_libraries(stendal
# List libraries link to the target library
cmark
android
log)
log)
# Add 16 KB page size alignment for Android 15+ compatibility
# This ensures the library works on devices with 16 KB memory page sizes
target_link_options(stendal PRIVATE -Wl,-z,max-page-size=16384)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB