Results 10 comments of Kim Jiun

@mhmdanas Hello! In that case, surely, an additional cache key should be given, at least in the current version. Something like this, ```yaml steps: - uses: actions/checkout@v3 - uses: subosito/flutter-action@main...

** **Developers who want to keep Firebase SDK Version 8.15.0 or do not intend to update to 9.2.0** ** ![image](https://user-images.githubusercontent.com/40026920/177113418-fd5f73d4-82bb-486c-bf91-a1b7429910ff.png) We should avoid using caret (^) sign on `pubspec yaml`...

Hello, It is correct to start __port of arduino__ with __/dev/ttyACM__. (e.g., /dev/ttyACM0 , /dev/ttyACM1 ... ) c.f Check running python with __sudo__. Serial communication requires permission. Thanks

I solved this error by update latest version of dependencies, Please check my pull requrest! ![image](https://user-images.githubusercontent.com/40026920/119262293-abf18780-bc15-11eb-90b9-c875be11d371.png) ![image](https://user-images.githubusercontent.com/40026920/119262580-b06a7000-bc16-11eb-92a1-21f708d0ef2e.png)

@stefalda @rajeshzmoke @quadbyte Please check my example [here](https://github.com/KKimj/emo-Book/blob/942187b954a6124aad5c9cfa721c4a663efa89b0/emo_book_flutter/pubspec.yaml#L47) We can use stable ```easy_web_view``` like this ```yaml # pubspec.yaml easy_web_view: git: https://github.com/KKimj/easy_web_view ```

@jhuleatt Hello! Would you leave some comments this PR please? Thanks!

@mikesol You can handle with `target input`, `.firebaserc` and `firebase.json` Something like below ```yaml firebase_hosting_preview: needs: build_web runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest ] build-dir: [ ./build/application...

Hello Here is simple solution to handle this issue. `if (authorizationStatus == TrackingStatus.notDetermined) {...}` -> `while (authorizationStatus == TrackingStatus.notDetermined) {...}` Avoid infinite loop, Add `int timeoutCount` variable. ## After ```dart...

@IchordeDionysos Hello there! I'll go ahead and close this PR now. Thank you for your attention and interest; it's much appreciated!