File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments