File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
Expand file tree Collapse file tree 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
22FastRsa_minSdkVersion =21
33FastRsa_targetSdkVersion =33
44FastRsa_compileSdkVersion =33
5- FastRsa_ndkversion =23.1.7779620
5+ FastRsa_ndkversion =28.0.13004108
Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-fast-rsa" ,
3- "version" : " 2.6.0 " ,
3+ "version" : " 2.6.1 " ,
44 "description" : " library for use RSA" ,
55 "main" : " lib/commonjs/index" ,
66 "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';
3434import { VerifyPKCS1v15BytesRequest } from './model/verify-pkcs1v15-bytes-request' ;
3535
3636const FastRSANativeModules = ( NativeModules as NativeModulesDef ) . FastRsa ;
37- const isDebuggingEnabled = typeof atob !== 'undefined' ;
37+ const isDebuggingEnabled =
38+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
3839
3940typeof global . FastRSACallPromise === 'undefined' &&
4041 ! isDebuggingEnabled &&
Original file line number Diff line number Diff line change 11import { NativeModules } from 'react-native' ;
22
33const FastRSANativeModules = ( NativeModules as NativeModulesDef ) . FastRsa ;
4- const isDebuggingEnabled = typeof atob !== 'undefined' ;
4+ const isDebuggingEnabled =
5+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
56
67typeof global . FastRSADecodeText === 'undefined' &&
78 ! isDebuggingEnabled &&
Original file line number Diff line number Diff line change 11import { NativeModules } from 'react-native' ;
22
33const FastRSANativeModules = ( NativeModules as NativeModulesDef ) . FastRsa ;
4- const isDebuggingEnabled = typeof atob !== 'undefined' ;
4+ const isDebuggingEnabled =
5+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
56
67typeof global . FastRSAEncodeText === 'undefined' &&
78 ! isDebuggingEnabled &&
You can’t perform that action at this time.
0 commit comments