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 @@ FastOpenpgp_kotlinVersion=1.7.0
2
2
FastOpenpgp_minSdkVersion =21
3
3
FastOpenpgp_targetSdkVersion =33
4
4
FastOpenpgp_compileSdkVersion =33
5
- FastOpenpgp_ndkversion =23.1.7779620
5
+ FastOpenpgp_ndkversion =28.0.13004108
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-fast-openpgp" ,
3
- "version" : " 2.9.0 " ,
3
+ "version" : " 2.9.1 " ,
4
4
"description" : " library for use openPGP" ,
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 './shim';
34
34
35
35
const FastOpenPGPNativeModules = ( NativeModules as NativeModulesDef )
36
36
. FastOpenpgp ;
37
- const isDebuggingEnabled = typeof atob !== 'undefined' ;
37
+ const isDebuggingEnabled =
38
+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
38
39
39
40
typeof global . FastOpenPGPCallPromise === 'undefined' &&
40
41
! isDebuggingEnabled &&
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import { NativeModules } from 'react-native';
2
2
3
3
const FastOpenPGPNativeModules = ( NativeModules as NativeModulesDef )
4
4
. FastOpenpgp ;
5
- const isDebuggingEnabled = typeof atob !== 'undefined' ;
5
+ const isDebuggingEnabled =
6
+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
6
7
7
8
typeof global . FastOpenPGPDecodeText === 'undefined' &&
8
9
! isDebuggingEnabled &&
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import { NativeModules } from 'react-native';
2
2
3
3
const FastOpenPGPNativeModules = ( NativeModules as NativeModulesDef )
4
4
. FastOpenpgp ;
5
- const isDebuggingEnabled = typeof atob !== 'undefined' ;
5
+ const isDebuggingEnabled =
6
+ typeof atob !== 'undefined' && typeof HermesInternal === 'undefined' ;
6
7
7
8
typeof global . FastOpenPGPEncodeText === 'undefined' &&
8
9
! isDebuggingEnabled &&
You can’t perform that action at this time.
0 commit comments