Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Decoder07 authored Dec 7, 2023
1 parent 006f792 commit 8c31777
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions packages/hms_room_kit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Please follow the below instructions to test the app for the Android Platform:

1. Add minimum SDK version (`minSdkVersion 21`) in `android/app/build.gradle` file (inside `defaultConfig`).

```json
```
...
defaultConfig {
...
Expand All @@ -123,7 +123,7 @@ defaultConfig {
2. To add PIP support in your app manifest files, add:
```xml
```
<activity
....
android:supportsPictureInPicture="true"
Expand Down Expand Up @@ -159,7 +159,7 @@ super.onActivityResult(requestCode, resultCode, data)

5. Add the `FOREGROUND_SERVICE` permission in `AndroidManifest.xml`:

```xml
```
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
```

Expand All @@ -169,13 +169,12 @@ Please follow the below instructions to test the app for iOS Platform

1. Add the target platform version as (`platform :ios, '12.0'`) in `ios/Podfile`

```json
```
platform :ios, '12.0'
```
2. Allow camera, recording audio and internet permissions by adding the below snippet to the `ios/Runner/info.plist` file.

<br />
```xml section=iosPermissions
```
<key>NSMicrophoneUsageDescription</key>
<string>{YourAppName} wants to use your microphone</string>
Expand All @@ -191,7 +190,7 @@ platform :ios, '12.0'
3. Add the below snippet to the `ios/Podfile` in post_install section:
```json
```
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
'$(inherited)',
Expand Down

0 comments on commit 8c31777

Please sign in to comment.