compile works with JDK 17 and we have access to microphone
This commit is contained in:
0
agent-mobile/artimobile/Task
Normal file
0
agent-mobile/artimobile/Task
Normal file
@ -1,6 +1,8 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
|
||||
|
||||
<application
|
||||
android:name=".MainApplication"
|
||||
|
@ -4,6 +4,8 @@
|
||||
|
||||
import {AppRegistry} from 'react-native';
|
||||
import App from './App';
|
||||
import VoiceHandler from './VoiceHandler';
|
||||
import {name as appName} from './app.json';
|
||||
|
||||
AppRegistry.registerComponent(appName, () => App);
|
||||
// AppRegistry.registerComponent(appName, () => App);
|
||||
AppRegistry.registerComponent(appName, () => VoiceHandler);
|
||||
|
@ -48,5 +48,7 @@
|
||||
</array>
|
||||
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||
<false/>
|
||||
<key>NSMicrophoneUsageDescription</key>
|
||||
<string>We use the mike to send voice commands to the AI agent.</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
Reference in New Issue
Block a user