📗
sounds
  • Introduction
  • Installing
  • Roadmap
  • API
    • Overview
    • AudioSource
    • Albums
    • Downloader
    • iOSCategory
    • MediaFormat
    • Monitoring
    • Quickplay
    • RecorderPlaybackController
    • SoundPlayer
    • SoundPlayerUI
    • SoundRecorder
    • SoundRecorderUI
    • Track
  • Platforms
    • Overview
    • Android
    • iOS
  • Contributing
    • Overview
    • Building
    • Debugging
    • Logging
  • ETC
    • Migrating from Flutter Sound
Powered by GitBook
On this page

Was this helpful?

  1. Platforms

iOS

Overview

Once you have added the Sounds dependency to you pubspec.yaml you need to modify your iOS info.plist file.

You need to set an appropriate message for the NSMicrophoneUsageDescription field.

<key>NSMicrophoneUsageDescription</key>
  <string>My app uses the microphone to record your speech and convert it to text.</string>
<key>UIBackgroundModes</key>
<array>
	<string>audio</string>
</array>
PreviousAndroidNextOverview

Last updated 4 years ago

Was this helpful?