Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions sfu-ws/flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,18 @@ Add the following entry to your Android Manifest file, located in `./android/app
</application>
```

Edit `android/app/build.gradle`, modify minSdkVersion to 18
Edit `android/app/build.gradle`, modify minSdk to 18

```gradle
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.github.pion.flutter_sfu_wsx_example"
minSdkVersion 18 // <-- here
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
applicationId = "com.github.pion.flutter_sfu_wsx_example"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = 18 // <- here
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
```

Expand Down
2 changes: 1 addition & 1 deletion sfu-ws/flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
flutter:
sdk: flutter

flutter_webrtc: ^0.14.0
flutter_webrtc: 1.2.1
web_socket_channel: ^3.0.0

dev_dependencies:
Expand Down
Loading