react-native-rn-speech-to-text 0.1.3 → 0.1.5

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.
package/README.md CHANGED
@@ -8,7 +8,7 @@ react-native-rn-speech-to-text is a React Native library that enables real-time
8
8
  npm install react-native-rn-speech-to-text
9
9
  ```
10
10
 
11
- ## For Lower Android Versions (Below Android 12)
11
+ ## Note: For Lower Android Versions (Below Android 12)
12
12
 
13
13
  Add the following inside your AndroidManifest.xml:
14
14
 
@@ -134,3 +134,5 @@ MIT
134
134
 
135
135
  Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
136
136
  u
137
+
138
+ # react-native-rn-speech-to-text
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-rn-speech-to-text",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "convert voice to text",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
@@ -47,9 +47,9 @@
47
47
  ],
48
48
  "repository": {
49
49
  "type": "git",
50
- "url": "git+https://www.npmjs.com/~faheem_katta.git"
50
+ "url": "https://github.com/faheem-cmd/react-native-rn-speech-to-text"
51
51
  },
52
- "author": "faheem-weft <faheem.tfora@gmail.com> (https://www.npmjs.com/~faheem_katta)",
52
+ "author": "faheem-katta <faheem.tfora@gmail.com> (https://www.npmjs.com/~faheem_katta)",
53
53
  "license": "MIT",
54
54
  "bugs": {
55
55
  "url": "https://www.npmjs.com/~faheem_katta/issues"
package/src/index.tsx ADDED
@@ -0,0 +1,5 @@
1
+ import SpeechToTextAndroid from './NativeSpeechToTextAndroid';
2
+
3
+ export function multiply(a: number, b: number): number {
4
+ return SpeechToTextAndroid.multiply(a, b);
5
+ }