Skip to content

Commit 3edf06c

Browse files
committed
Update sfu-ws/flutter readme for flutter 1.2.1
1 parent b015a3a commit 3edf06c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

sfu-ws/flutter/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,18 @@ Add the following entry to your Android Manifest file, located in `./android/app
4747
</application>
4848
```
4949

50-
Edit `android/app/build.gradle`, modify minSdkVersion to 18
50+
Edit `android/app/build.gradle`, modify minSdk to 18
5151

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

0 commit comments

Comments
 (0)