react-native-zano 0.2.0 → 0.2.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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.2.1 (2025-07-21)
6
+
7
+ - fixed: Support 16k pages for Android 15.
8
+
5
9
  ## 0.2.0 (2025-05-26)
6
10
 
7
11
  - changed: `transfer` now accepts an array of destinations.
package/README.md CHANGED
@@ -59,4 +59,5 @@ For this to work, you need:
59
59
 
60
60
  - A recent Android SDK, installed at `$ANDROID_HOME`
61
61
  - Xcode command-line tools
62
+ - `cmake`, provided by `brew install cmake`
62
63
  - `llvm-objcopy`, provided by `brew install llvm`
@@ -8,32 +8,32 @@
8
8
  <key>BinaryPath</key>
9
9
  <string>libzano-module.a</string>
10
10
  <key>LibraryIdentifier</key>
11
- <string>ios-arm64_x86_64-simulator</string>
11
+ <string>ios-arm64</string>
12
12
  <key>LibraryPath</key>
13
13
  <string>libzano-module.a</string>
14
14
  <key>SupportedArchitectures</key>
15
15
  <array>
16
16
  <string>arm64</string>
17
- <string>x86_64</string>
18
17
  </array>
19
18
  <key>SupportedPlatform</key>
20
19
  <string>ios</string>
21
- <key>SupportedPlatformVariant</key>
22
- <string>simulator</string>
23
20
  </dict>
24
21
  <dict>
25
22
  <key>BinaryPath</key>
26
23
  <string>libzano-module.a</string>
27
24
  <key>LibraryIdentifier</key>
28
- <string>ios-arm64</string>
25
+ <string>ios-arm64_x86_64-simulator</string>
29
26
  <key>LibraryPath</key>
30
27
  <string>libzano-module.a</string>
31
28
  <key>SupportedArchitectures</key>
32
29
  <array>
33
30
  <string>arm64</string>
31
+ <string>x86_64</string>
34
32
  </array>
35
33
  <key>SupportedPlatform</key>
36
34
  <string>ios</string>
35
+ <key>SupportedPlatformVariant</key>
36
+ <string>simulator</string>
37
37
  </dict>
38
38
  </array>
39
39
  <key>CFBundlePackageType</key>
@@ -174,7 +174,8 @@ async function buildAndroidZano(platform) {
174
174
  ...zanoLibs.map(name => (0, path_1.join)(zanoLibPath, `lib${name}.a`)),
175
175
  '-llog',
176
176
  `-Wl,--version-script=${(0, path_1.join)(exports.srcPath, 'jni/exports.map')}`,
177
- '-Wl,--no-undefined'
177
+ '-Wl,--no-undefined',
178
+ '-Wl,-z,max-page-size=16384'
178
179
  ]);
179
180
  }
180
181
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-zano",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "React Native bindings for the Zano blockchain",
5
5
  "homepage": "https://github.com/EdgeApp/react-native-zano",
6
6
  "repository": {