Skip to content

Commit cc3df31

Browse files
committed
updated AndroidManifest to work with the new Fragment-oriented plugin
1 parent 7e9180a commit cc3df31

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed
Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.example.eric.speechrecognizer"
4-
android:versionCode="1"
5-
android:versionName="1.0" >
3+
package="com.example.eric.unityspeechrecognizerplugin">
4+
65
<uses-permission android:name="android.permission.RECORD_AUDIO" />
76

87
<uses-sdk
98
android:minSdkVersion="24"
109
android:targetSdkVersion="28" />
1110

12-
<application android:label="@string/app_name" >
13-
<activity android:name="com.example.eric.unityspeechrecognizerplugin.MainActivity" android:screenOrientation="landscape" android:label="@string/app_name" android:launchMode="singleInstance" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
14-
<intent-filter>
15-
<action android:name="android.intent.action.MAIN" />
16-
<category android:name="android.intent.category.LAUNCHER" />
17-
</intent-filter>
18-
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
19-
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
20-
</activity>
21-
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name">
22-
</activity>
23-
<activity android:name="com.unity3d.player.UnityPlayerNativeActivity" android:label="@string/app_name">
24-
<meta-data android:name="android.app.lib_name" android:value="unity" />
25-
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
26-
</activity>
11+
<application
12+
android:allowBackup="true"
13+
android:supportsRtl="true">
2714
</application>
2815

2916
</manifest>

0 commit comments

Comments
 (0)