react-native-zano 0.2.7 → 0.2.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.
- package/CHANGELOG.md +4 -0
- package/android/src/main/jniLibs/arm64-v8a/librnzano.so +0 -0
- package/android/src/main/jniLibs/armeabi-v7a/librnzano.so +0 -0
- package/android/src/main/jniLibs/x86/librnzano.so +0 -0
- package/android/src/main/jniLibs/x86_64/librnzano.so +0 -0
- package/ios/ZanoModule.mm +1 -1
- package/ios/ZanoModule.xcframework/ios-arm64/libzano-module.a +0 -0
- package/ios/ZanoModule.xcframework/ios-arm64_x86_64-simulator/libzano-module.a +0 -0
- package/package.json +1 -1
- package/src/zano-wrapper/zano-methods.hpp +1 -1
package/CHANGELOG.md
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/ios/ZanoModule.mm
CHANGED
|
@@ -18,7 +18,7 @@ RCT_REMAP_METHOD(
|
|
|
18
18
|
|
|
19
19
|
// Re-package the arguments:
|
|
20
20
|
NSUInteger length = [arguments count];
|
|
21
|
-
std::vector<
|
|
21
|
+
std::vector<std::string> strings;
|
|
22
22
|
strings.reserve(length);
|
|
23
23
|
for (NSUInteger i = 0; i < length; ++i) {
|
|
24
24
|
NSString *string = [arguments objectAtIndex:i];
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
struct ZanoMethod {
|
|
8
8
|
const char *name;
|
|
9
9
|
int argc;
|
|
10
|
-
std::string (*method)(const std::vector<
|
|
10
|
+
std::string (*method)(const std::vector<std::string> &args);
|
|
11
11
|
};
|
|
12
12
|
extern const ZanoMethod zanoMethods[];
|
|
13
13
|
extern const unsigned zanoMethodCount;
|