16KB page size support
This commit is contained in:
parent
2d432815b6
commit
9fd1e8daac
|
|
@ -21,3 +21,5 @@ pep-api-postman.json
|
|||
# Keystore files - keep these secure and share privately
|
||||
*.keystore
|
||||
*.jks
|
||||
ZekoChatKey
|
||||
app/zekochat.keystore
|
||||
|
|
@ -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>
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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 |
Loading…
Reference in New Issue