We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed9d69 commit ebe82bcCopy full SHA for ebe82bc
doc/bg_recording.md
@@ -17,10 +17,18 @@ Add the following the manifest in `android/app/src/main/AndroidManifest.xml`:
17
android:foregroundServiceType="microphone"
18
android:exported="false" />
19
</application>
20
+```
21
-A notification is added to conform to Android requirements.
22
+When starting recording, you need to enable the service explicitly by setting the following in the given config:
23
+```dart
24
+RecordConfig(
25
+ ...,
26
+ androidConfig: AndroidRecordConfig(service: AndroidService(title: 'Title', content: 'Content...'))
27
+);
28
```
29
30
+A notification is added to conform to Android requirements if service is started.
31
+
32
## iOS
33
34
Add the following in `ios/Runner/info.plist`:
0 commit comments