Skip to content

Commit

Permalink
Remove unused microphone permissions due to wit.ai code
Browse files Browse the repository at this point in the history
  • Loading branch information
plaidpants committed Mar 6, 2024
1 parent c63708c commit e95646f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Assets/Plugins/Android/AndroidManifest.xml
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>
7 changes: 7 additions & 0 deletions Assets/Plugins/Android/AndroidManifest.xml.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e95646f

Please sign in to comment.