Skip to content

Commit 67fbbfa

Browse files
committed
added UnitySpeechRecognizer project
1 parent ae69051 commit 67fbbfa

File tree

4,508 files changed

+75407
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,508 files changed

+75407
-14
lines changed

β€ŽUnitySpeechRecognizer/Assets/Plugins.metaβ€Ž

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽUnitySpeechRecognizer/Assets/Plugins/Android.metaβ€Ž

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.eric.unityspeechrecognizerplugin"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="24"
9+
android:targetSdkVersion="28" />
10+
11+
<uses-permission android:name="android.permission.RECORD_AUDIO" />
12+
13+
<application android:label="@string/app_name" >
14+
<activity
15+
android:name="com.example.eric.unityspeechrecognizerplugin.MainActivity"
16+
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
17+
android:label="@string/app_name"
18+
android:launchMode="singleInstance"
19+
android:screenOrientation="landscape" >
20+
<intent-filter>
21+
<action android:name="android.intent.action.MAIN" />
22+
23+
<category android:name="android.intent.category.LAUNCHER" />
24+
</intent-filter>
25+
26+
<meta-data
27+
android:name="unityplayer.UnityActivity"
28+
android:value="true" />
29+
<meta-data
30+
android:name="unityplayer.ForwardNativeEventsToDalvik"
31+
android:value="true" />
32+
</activity>
33+
<activity
34+
android:name="com.unity3d.player.UnityPlayerActivity"
35+
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
36+
android:label="@string/app_name" >
37+
</activity>
38+
<activity
39+
android:name="com.unity3d.player.UnityPlayerNativeActivity"
40+
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen"
41+
android:label="@string/app_name" >
42+
<meta-data
43+
android:name="android.app.lib_name"
44+
android:value="unity" />
45+
<meta-data
46+
android:name="unityplayer.ForwardNativeEventsToDalvik"
47+
android:value="true" />
48+
</activity>
49+
</application>
50+
51+
</manifest>

β€ŽUnitySpeechRecognizer/Assets/Plugins/Android/AndroidManifest.xml.metaβ€Ž

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
4.47 KB
Binary file not shown.

β€ŽUnitySpeechRecognizer/Assets/Plugins/Android/classes.jar.metaβ€Ž

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽUnitySpeechRecognizer/Assets/Plugins/Android/libs.metaβ€Ž

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Binary file not shown.

β€ŽUnitySpeechRecognizer/Assets/Plugins/Android/libs/support-v4-24.1.1.aar.metaβ€Ž

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽUnitySpeechRecognizer/Assets/Scripts.metaβ€Ž

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)