Skip to content
This repository was archived by the owner on Oct 5, 2020. It is now read-only.

Commit 4263de5

Browse files
committed
Add permissions to README
1 parent d6f25a7 commit 4263de5

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ Copy and paste your Chirp app key, secret and chosen configuration into the
1313
await ChirpSDK.setConfig(_appConfig);
1414
await ChirpSDK.start();
1515

16+
## Permissions
17+
18+
To grant iOS apps permission to use the microphone, you will need to add a `Privacy - Microphone Usage Description`
19+
statement to the `Info.plist` in the Runner xcode project.
20+
21+
For Android you will need to edit the `AndroidManifest.xml` file to include
22+
23+
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
24+
<uses-permission android:name="android.permission.RECORD_AUDIO" />
25+
<uses-permission android:name="android.permission.INTERNET" />
26+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
27+
1628
## Sending
1729

1830
Chirp SDKs accept data as an array of bytes, creating a versatile interface for all kinds of data.

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Demonstrates how to use the ChirpSDK plugin.
66

77
This project is a starting point for a Flutter application using Chirp.
88

9-
- [Example Code](https://github.com/chirp/chirp-connect-flutter/tree/master/chirpsdk/example)
9+
- [Example Code](https://github.com/chirp/chirp-connect-flutter/tree/master/example)

0 commit comments

Comments
 (0)