-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused microphone permissions due to wit.ai code
- Loading branch information
1 parent
c63708c
commit e95646f
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.unity3d.player" | ||
xmlns:tools="http://schemas.android.com/tools"> <!-- Make sure the tools namespace is declared --> | ||
|
||
<!-- Add the uses-permission tag here, outside the application tag --> | ||
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove" /> | ||
|
||
<application> | ||
<activity android:name="com.unity3d.player.UnityPlayerActivity" | ||
android:theme="@style/UnityThemeSelector"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
<meta-data android:name="unityplayer.UnityActivity" android:value="true" /> | ||
</activity> | ||
</application> | ||
</manifest> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.