File tree 5 files changed +8
-5
lines changed
5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ FastRsa_kotlinVersion=1.7.0
2
2
FastRsa_minSdkVersion =21
3
3
FastRsa_targetSdkVersion =33
4
4
FastRsa_compileSdkVersion =33
5
- FastRsa_ndkversion =23.1.7779620
5
+ FastRsa_ndkversion =28.0.13004108
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-fast-rsa" ,
3
- "version" : " 2.6.0 " ,
3
+ "version" : " 2.6.1 " ,
4
4
"description" : " library for use RSA" ,
5
5
"main" : " lib/commonjs/index" ,
6
6
"module" : " lib/module/index" ,
Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ import { VerifyPSSBytesRequest } from './model/verify-pssbytes-request';
34
34
import { VerifyPKCS1v15BytesRequest } from './model/verify-pkcs1v15-bytes-request' ;
35
35
36
36
const FastRSANativeModules = ( NativeModules as NativeModulesDef ) . FastRsa ;
37
- const isDebuggingEnabled = typeof atob !== 'undefined' ;
37
+ const isDebuggingEnabled =
38
+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
38
39
39
40
typeof global . FastRSACallPromise === 'undefined' &&
40
41
! isDebuggingEnabled &&
Original file line number Diff line number Diff line change 1
1
import { NativeModules } from 'react-native' ;
2
2
3
3
const FastRSANativeModules = ( NativeModules as NativeModulesDef ) . FastRsa ;
4
- const isDebuggingEnabled = typeof atob !== 'undefined' ;
4
+ const isDebuggingEnabled =
5
+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
5
6
6
7
typeof global . FastRSADecodeText === 'undefined' &&
7
8
! isDebuggingEnabled &&
Original file line number Diff line number Diff line change 1
1
import { NativeModules } from 'react-native' ;
2
2
3
3
const FastRSANativeModules = ( NativeModules as NativeModulesDef ) . FastRsa ;
4
- const isDebuggingEnabled = typeof atob !== 'undefined' ;
4
+ const isDebuggingEnabled =
5
+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
5
6
6
7
typeof global . FastRSAEncodeText === 'undefined' &&
7
8
! isDebuggingEnabled &&
You can’t perform that action at this time.
0 commit comments