You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-7Lines changed: 23 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
# UnityAndroidSpeechRecognizer 🗣️
2
2
*Created by Eric Batlle Clavero*
3
3
4
-
A simple **Android App** made with **Unity** that implements a **Speech Recognizer** using Android's native recognizer.
4
+
A simple **Android App** made with **Unity** that implements a **Speech Recognizer** using Android native recognizer.
5
5
6
6
**Without** the annoying **pop-up** and the option to keep the app **listening indefinitely**, not just once.
7
7
@@ -18,23 +18,39 @@ This repository is divided in 2 parts:
18
18
19
19
*In this image it is possible to see 4 results appearing on the panel after speaking to the device "continuous text speech".*
20
20
21
+
## Donations are appreciated! 💸
22
+
*Remember that are many ways to say thank you.*
23
+
24
+
If this plugin has been helpful remember to star the repository and consider buying me a coffee! 😀
25
+
<p>
26
+
<ahref="https://www.buymeacoffee.com/ebatlleclavero"target="_blank"><imgsrc="https://cdn.buymeacoffee.com/buttons/default-blue.png"alt="Buy Me A Coffee"width="144.6"height="34"></a>
27
+
</p>
28
+
29
+
If you like my general work and contributions consider [sponsoring me on Github](https://github.com/sponsors/EricBatlle).
30
+
31
+
But if you just want to donate straightforward, I also have [PayPal.me](https://paypal.me/EricBatlleClavero?locale.x=es_ES).
21
32
22
33
## How to Use ⚙️
23
34
24
-
If you want to test the app, you can download the APK from [here](https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/download/v1.1/SpeechRecognizer.apk).
35
+
If you want to test the app, you can download the APK from [here](https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/download/v1.2/SpeechRecognizer_1.2.apk).
25
36
26
37
If you want to open the project and check the code, you need to have **Unity** and **AndroidStudio** installed and updated.
27
38
28
39
If you want to scratch the code:
29
40
30
-
- If you want to check **Unity
31
-
**'s project, **open the project**, select **SpeechRecognizer** scene.
41
+
- To check **Unity** project, **open the project**, select **SpeechRecognizer** scene.
32
42
Either inside the unity project or simply dragging the **.cs** classes on your editor, you have to watch on to the classes located on ``UnitySpeechRecognizer/Assets/Scripts``.
33
-
- If you want to check the **Android Plugin** you can do it opening the solution with **AndroidStudio** or just drag the ``MainActivity.java`` class located on ``UnitySpeechRecognizerPlugin\app\src\main\java\com\example\eric\unityspeechrecognizerplugin``
43
+
- To check **Android Plugin** you can do it opening the solution with **AndroidStudio** or just drag the ``SpeechRecognizerFragment.java`` class located on ``UnitySpeechRecognizerPlugin\SpeechRecognizer\src\main\java\com\example\eric\unityspeechrecognizerplugin``
44
+
45
+
Functionality is simple, just press the checkmark if you want to enable/disable continuous listening mode, press Start listening and talk to your device to check the results!
46
+
47
+
#### Multiple plugins support 🔌
48
+
This plugin has been made following a **fragment-pattern** to avoid errors that can be derived from extending *UnityPlayerActivity*.
34
49
50
+
This way you can integrate this plugin with your projects even if they already have more plugins. **Truly pluggable**.
35
51
36
52
#### Upgrading dependencies 📜
37
53
38
-
Keep in mind that the actual release ([v1.1](https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/tag/v1.1)) of the plugin works with **AndroidX** dependencies. That means that is targeting **Android 9** (API level 28).
54
+
Keep in mind that the actual release ([v1.2](https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/tag/v1.2)) of the plugin works with **AndroidX** dependencies. That means that is targeting **Android 9** (API level 28).
39
55
40
-
If you want to target older versions I recommend to use the old version of the plugin ([v1.0]((https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/tag/v1.0))) that works with **Android Support v4**. You can download the old plugin source code and APK from [here](https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/tag/v1.0).
56
+
If you want to target older versions I recommend to use the old version of the plugin ([v1.0]((https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/tag/v1.0))) that works with **Android Support v4**. You can download the old plugin source code and APK from [here](https://github.com/EricBatlle/UnityAndroidSpeechRecognizer/releases/tag/v1.0).
0 commit comments