react-native-stallion 2.3.0-alpha.6 → 2.3.0-alpha.8

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.
@@ -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
+ )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-stallion",
3
- "version": "2.3.0-alpha.6",
3
+ "version": "2.3.0-alpha.8",
4
4
  "description": "Offical React Native SDK for Stallion",
5
5
  "main": "index",
6
6
  "types": "types/index.d.ts",