@onekeyfe/react-native-lite-card 1.1.22 → 1.1.24

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.
@@ -74,7 +74,7 @@ object MiUtil {
74
74
  "5" -> return PERMISSION_ASK
75
75
  }
76
76
  } catch (e: Exception) {
77
- OneKeyLog.debug("LiteCard", "check nfc permission fail: ${e.message}")
77
+ OneKeyLog.debug("LiteCard", "check nfc permission fail: ${e.message}\n${e.stackTraceToString()}")
78
78
  }
79
79
  return PERMISSION_UNKNOWN
80
80
  }
@@ -86,7 +86,7 @@ object MiUtil {
86
86
  context.startActivity(intent)
87
87
  true
88
88
  } catch (e: Exception) {
89
- OneKeyLog.debug("LiteCard", "open app setting fail: ${e.message}")
89
+ OneKeyLog.debug("LiteCard", "open app setting fail: ${e.message}\n${e.stackTraceToString()}")
90
90
  false
91
91
  }
92
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onekeyfe/react-native-lite-card",
3
- "version": "1.1.22",
3
+ "version": "1.1.24",
4
4
  "description": "lite card",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
package/README.md DELETED
@@ -1,37 +0,0 @@
1
- # @onekeyfe/react-native-lite-card
2
-
3
- lite card
4
-
5
- ## Installation
6
-
7
-
8
- ```sh
9
- npm install @onekeyfe/react-native-lite-card
10
- ```
11
-
12
-
13
- ## Usage
14
-
15
-
16
- ```js
17
- import { multiply } from '@onekeyfe/react-native-lite-card';
18
-
19
- // ...
20
-
21
- const result = multiply(3, 7);
22
- ```
23
-
24
-
25
- ## Contributing
26
-
27
- - [Development workflow](CONTRIBUTING.md#development-workflow)
28
- - [Sending a pull request](CONTRIBUTING.md#sending-a-pull-request)
29
- - [Code of conduct](CODE_OF_CONDUCT.md)
30
-
31
- ## License
32
-
33
- MIT
34
-
35
- ---
36
-
37
- Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)