Skip to content

Commit 3c188e1

Browse files
committed
Updates binaries + Updated Android SDK to r28 for 16KB support
1 parent 7429ea0 commit 3c188e1

File tree

26 files changed

+44
-7
lines changed

26 files changed

+44
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.8.1
2+
- Updates binaries + Updated Android SDK to r28 for 16KB support
3+
14
## 3.8.0
25
- Add RSASync methods for all Platforms but web
36

android/src/main/jniLibs/arm64-v8a/librsa_bridge.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ extern "C" {
8181
#endif
8282

8383
extern BytesReturn* RSABridgeCall(char* name, void* payload, int payloadSize);
84+
extern BytesReturn* RSAEncodeText(char* input, char* encoding);
85+
extern char* RSADecodeText(void* input, int size, char* encoding, int fatal, int ignoreBOM, int stream);
8486

8587
#ifdef __cplusplus
8688
}
Binary file not shown.

android/src/main/jniLibs/armeabi-v7a/librsa_bridge.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ extern "C" {
8181
#endif
8282

8383
extern BytesReturn* RSABridgeCall(char* name, void* payload, int payloadSize);
84+
extern BytesReturn* RSAEncodeText(char* input, char* encoding);
85+
extern char* RSADecodeText(void* input, int size, char* encoding, int fatal, int ignoreBOM, int stream);
8486

8587
#ifdef __cplusplus
8688
}
Binary file not shown.

android/src/main/jniLibs/x86/librsa_bridge.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ extern "C" {
8181
#endif
8282

8383
extern BytesReturn* RSABridgeCall(char* name, void* payload, int payloadSize);
84+
extern BytesReturn* RSAEncodeText(char* input, char* encoding);
85+
extern char* RSADecodeText(void* input, int size, char* encoding, int fatal, int ignoreBOM, int stream);
8486

8587
#ifdef __cplusplus
8688
}
636 KB
Binary file not shown.

android/src/main/jniLibs/x86_64/librsa_bridge.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ extern "C" {
8181
#endif
8282

8383
extern BytesReturn* RSABridgeCall(char* name, void* payload, int payloadSize);
84+
extern BytesReturn* RSAEncodeText(char* input, char* encoding);
85+
extern char* RSADecodeText(void* input, int size, char* encoding, int fatal, int ignoreBOM, int stream);
8486

8587
#ifdef __cplusplus
8688
}
Binary file not shown.

ios/Rsa.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,15 @@
1010
<key>HeadersPath</key>
1111
<string>Headers</string>
1212
<key>LibraryIdentifier</key>
13-
<string>ios-arm64_x86_64-simulator</string>
13+
<string>ios-arm64</string>
1414
<key>LibraryPath</key>
1515
<string>librsa_bridge.a</string>
1616
<key>SupportedArchitectures</key>
1717
<array>
1818
<string>arm64</string>
19-
<string>x86_64</string>
2019
</array>
2120
<key>SupportedPlatform</key>
2221
<string>ios</string>
23-
<key>SupportedPlatformVariant</key>
24-
<string>simulator</string>
2522
</dict>
2623
<dict>
2724
<key>BinaryPath</key>
@@ -48,15 +45,18 @@
4845
<key>HeadersPath</key>
4946
<string>Headers</string>
5047
<key>LibraryIdentifier</key>
51-
<string>ios-arm64</string>
48+
<string>ios-arm64_x86_64-simulator</string>
5249
<key>LibraryPath</key>
5350
<string>librsa_bridge.a</string>
5451
<key>SupportedArchitectures</key>
5552
<array>
5653
<string>arm64</string>
54+
<string>x86_64</string>
5755
</array>
5856
<key>SupportedPlatform</key>
5957
<string>ios</string>
58+
<key>SupportedPlatformVariant</key>
59+
<string>simulator</string>
6060
</dict>
6161
</array>
6262
<key>CFBundlePackageType</key>

0 commit comments

Comments
 (0)