react-native-stallion 2.3.0 → 2.4.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -103,11 +103,3 @@ dependencies {
|
|
|
103
103
|
//noinspection GradleDynamicVersion
|
|
104
104
|
implementation "com.facebook.react:react-native:+"
|
|
105
105
|
}
|
|
106
|
-
|
|
107
|
-
if (isNewArchitectureEnabled()) {
|
|
108
|
-
react {
|
|
109
|
-
jsRootDir = file("../src/")
|
|
110
|
-
libraryName = "Stallion"
|
|
111
|
-
codegenJavaPackageName = "com.stallion"
|
|
112
|
-
}
|
|
113
|
-
}
|
|
@@ -17,3 +17,9 @@ target_link_libraries(
|
|
|
17
17
|
stallion-crash
|
|
18
18
|
${log-lib}
|
|
19
19
|
)
|
|
20
|
+
|
|
21
|
+
# Fix for 16KB page size compatibility (required for Android 15+)
|
|
22
|
+
# This ensures LOAD segments are aligned at 16KB boundaries
|
|
23
|
+
set_target_properties(stallion-crash PROPERTIES
|
|
24
|
+
LINK_FLAGS "-Wl,-z,max-page-size=16384"
|
|
25
|
+
)
|