flutter / flutter

Flutter makes it easy and fast to build beautiful apps for mobile and beyond
https://flutter.dev
BSD 3-Clause "New" or "Revised" License
163.05k stars 26.82k forks source link

Flutter throws <get_gpu_clk:229>: open failed: errno 13 #15158

Open johnkenedyong opened 6 years ago

johnkenedyong commented 6 years ago

Steps to Reproduce

  1. Make a list of gridtiles in gridview that loads images infinitely from http, the images are wrapped by Semantics.
  2. On low end mobile which is mine which is Xiaomi Redmi Note 5A, continuously scroll the images and some images will be moving because of GIF and it will throw error
         Widget _buildImages() {
         if (_images.length == 0) {
                  _getImages(); // Will append list of JSON dynamic to _images object
         }
         return new GridView.builder(
          gridDelegate: new SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 3),
          padding: const EdgeInsets.all(4.0),
          itemCount:_images.length,
          itemBuilder: (context, i) {
          int index = i;

          if (index == _images.length - 1)
          {
            _getImages(); //When last gridtile is reached, load new one, INFINITE
          }

          if (_gridTiles[index] != null) {
            return _gridTiles[index]; // caching
          }

          if (index >= _images.length || _images[index]["Images"] == null || _images[index]["Images"].length < 1) {
              return null;
          }
          var urlImage = _images[index]["Images"][0];
          if (_imagesCache[urlImage] != null) {
            var g = new GridTile(
                  child: _imagesCache[urlImage]
            );
            _gridTiles[index] = g;
            return g;
          }

          var future = http.get(urlImage).timeout(const Duration(seconds:60 * 5));
          var gridTile = new GridTile(
            child: new FutureBuilder(
              future:future,
              builder:(context, response) {
                try
                {
                  if (response == null || response.data == null || response.hasError || response.data.statusCode != 200) {
                      return new Image.asset("asset/placeholder.png");
                  } else {
                    Image img;
                    try
                    {
                      if (response.data.body.contains('html') == false) {
                        img = new Image.memory(response.data.bodyBytes);
                      } else {
                        img = null;
                      }
                    } catch(exception) {
                      img = null;
                    }
                    if (img == null) {
                      img = new Image.asset("asset/placeholder.png");
                    }
                    _imagesCache[urlImage] = img;
                    return new Semantics(
                      label : '',
                      child : img
                    );
                  }
                }
                catch (exception) {
                  return new Image.asset("asset/placeholder.png");
                }
              }
            )
          );
          _gridTiles[index] = gridTile;
          return gridTile;
        });
  }

Logs

W/ple.edmwinnosia(18206): type=1400 audit(0.0:670): avc: denied { read } for name="gpuclk" dev="sysfs" ino=20994 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0
W/Adreno-ES20(18206): <get_gpu_clk:229>: open failed: errno 13
I/OpenGLRenderer(18206): Initialized EGL, version 1.4

Flutter Doctor

[√] Flutter (Channel dev, v0.1.7, on Microsoft Windows [Version 10.0.16299.248], locale en-US)
    • Flutter version 0.1.7 at C:\Users\innos\Dropbox\Android\flutter
    • Framework revision 3b84503403 (6 days ago), 2018-02-26 20:11:11 -0800
    • Engine revision ead227f118
    • Dart version 2.0.0-dev.28.0.flutter-0b4f01f759

[√] Android toolchain - develop for Android devices (Android SDK 27.0.3)
    • Android SDK at C:\Users\innos\AppData\Local\Android\sdk
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-27, build-tools 27.0.3
    • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01)

[√] Android Studio (version 3.0)
    • Android Studio at C:\Program Files\Android\Android Studio
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01)

[√] IntelliJ IDEA Community Edition (version 2017.3)
    • Flutter plugin version 22.0.2
    • Dart plugin version 173.4548.30

[√] VS Code (version 1.19.2)
    • VS Code at C:\Program Files\Microsoft VS Code
    • Dart Code extension version 2.8.0

[√] Connected devices (1 available)
    • Redmi Note 5A • 20e9183f • android-arm64 • Android 7.1.2 (API 25)

• No issues found!
Jierain commented 5 years ago

https://stackoverflow.com/questions/46241071/create-signature-area-for-mobile-app-in-dart-flutter

import 'package:flutter/material.dart';
class SignaturePainter extends CustomPainter {
  SignaturePainter(this.points);
  final List<Offset> points;
  void paint(Canvas canvas, Size size) {
    Paint paint = new Paint()
      ..color = Colors.black
      ..strokeCap = StrokeCap.round
      ..strokeWidth = 5.0;
    for (int i = 0; i < points.length - 1; i++) {
      if (points[i] != null && points[i + 1] != null)
        canvas.drawLine(points[i], points[i + 1], paint);
    }
  }
  bool shouldRepaint(SignaturePainter other) => other.points != points;
}
class Signature extends StatefulWidget {
  SignatureState createState() => new SignatureState();
}
class SignatureState extends State<Signature> {
  List<Offset> _points = <Offset>[];
  Widget build(BuildContext context) {
    return new GestureDetector(
      onPanUpdate: (DragUpdateDetails details) {
        setState(() {
          RenderBox referenceBox = context.findRenderObject();
          Offset localPosition =
          referenceBox.globalToLocal(details.globalPosition);
          _points = new List.from(_points)..add(localPosition);
        });
      },
      onPanEnd: (DragEndDetails details) => _points.add(null),
      child: new CustomPaint(painter: new SignaturePainter(_points)),
    );
  }
}
class DemoApp extends StatelessWidget {
  Widget build(BuildContext context) => new Scaffold(body: new Signature());
}
void main() => runApp(new MaterialApp(home: new DemoApp()));

It does not work, and print this:

**type=1400 audit(0.0:2500): avc: denied { read } for name="gpuclk" dev="sysfs" ino=21020 scontext=u:r:untrusted_app:s0:c512,c768 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0**
W/Adreno-ES20( 9965): **<get_gpu_clk:229>: open failed: errno 13**
irpankusuma commented 4 years ago

Hi @zoechi , @Jierain , @johnkenedyong anyone update solve this error? same error issue when using platform channel and broadcast receiver

D/com.asriworks.pos.ekios_cashlez.EkiosCashlezPlugin(10334): success : cashlez application FOUND D/ResponseReceiver(10334): {ReturnUrl=, ReturnStatus=Success, ReturnMessage=Payment successful} W/Adreno-ES20(10334): <get_gpu_clk:229>: open failed: errno 13 I/OpenGLRenderer(10334): Initialized EGL, version 1.4 D/OpenGLRenderer(10334): Swap behavior 1 W/Adreno-ES20(10334): <get_gpu_clk:229>: open failed: errno 13

TahaTesser commented 4 years ago

Hi @johnkenedyong @irpankusuma You code sample is incomplete, i even tried to add missing but not able to reproduce the issue Can you please provided minimal code sample?

@Jierain
Running your code sample Adreno GPU based physical device Oneplus 2 has no such error in the logs in latest (Channel stable, v1.17.1, Adreno-ES20 probably Adreno GPU?

Can you list device you noticed this error in?

logs ``` #12 CommandRunner.runCommand (package:args/command_runner.dart:197:27) #13 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:339:21) #14 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart) #15 AppContext.run. (package:flutter_tools/src/base/context.dart:150:29) #16 _rootRun (dart:async/zone.dart:1184:13) #17 _CustomZone.run (dart:async/zone.dart:1077:19) #18 _runZoned (dart:async/zone.dart:1619:10) #19 runZoned (dart:async/zone.dart:1539:10) #20 AppContext.run (package:flutter_tools/src/base/context.dart:149:18) #21 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:288:19) #22 CommandRunner.run. (package:args/command_runner.dart:112:25) #23 new Future.sync (dart:async/future.dart:224:31) #24 CommandRunner.run (package:args/command_runner.dart:112:14) #25 FlutterCommandRunner.run (package:flutter_tools/src/runner/flutter_command_runner.dart:231:18) #26 run.. (package:flutter_tools/runner.dart:63:22) #27 _rootRun (dart:async/zone.dart:1184:13) #28 _CustomZone.run (dart:async/zone.dart:1077:19) #29 _runZoned (dart:async/zone.dart:1619:10) #30 runZonedGuarded (dart:async/zone.dart:1608:12) #31 runZoned (dart:async/zone.dart:1536:12) #32 run. (package:flutter_tools/runner.dart:61:18) #33 run. (package:flutter_tools/runner.dart) #34 runInContext.runnerWrapper (package:flutter_tools/src/context_runner.dart:64:18) #35 runInContext.runnerWrapper (package:flutter_tools/src/context_runner.dart) #36 AppContext.run. (package:flutter_tools/src/base/context.dart:150:29) #37 _rootRun (dart:async/zone.dart:1184:13) #38 _CustomZone.run (dart:async/zone.dart:1077:19) #39 _runZoned (dart:async/zone.dart:1619:10) #40 runZoned (dart:async/zone.dart:1539:10) #41 AppContext.run (package:flutter_tools/src/base/context.dart:149:18) #42 runInContext (package:flutter_tools/src/context_runner.dart:67:24) #43 run (package:flutter_tools/runner.dart:48:10) #44 main (package:flutter_tools/executable.dart:69:9) #45 main (file:///Users/tahatesser/Code/flutter_stable/packages/flutter_tools/bin/flutter_tools.dart:8:3) #46 _startIsolate. (dart:isolate-patch/isolate_patch.dart:299:32) #47 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:168:12) tahatesser@Tahas-MacBook-Pro beta_flutter % flutters run -v -d One [ +22 ms] Warning! The 'flutter' tool you are currently running is from a different Flutter repository than the one last used by this package. The repository from which the 'flutter' tool is currently executing will be used instead. running Flutter tool: /Users/tahatesser/Code/flutter_stable previous reference : /Users/tahatesser/Code/flutter_beta This can happen when you have multiple copies of flutter installed. Please check your system path to verify that you are running the expected version (run 'flutter --version' to see which flutter is on your path). [ +15 ms] executing: [/Users/tahatesser/Code/flutter_stable/] git -c log.showSignature=false log -n 1 --pretty=format:%H [ +30 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H [ ] f7a6a7906be96d2288f5d63a5a54c515a6e987fe [ ] executing: [/Users/tahatesser/Code/flutter_stable/] git tag --contains HEAD [ +167 ms] Exit code 0 from: git tag --contains HEAD [ ] 1.17.1 [ +8 ms] executing: [/Users/tahatesser/Code/flutter_stable/] git rev-parse --abbrev-ref --symbolic @{u} [ +11 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/stable [ ] executing: [/Users/tahatesser/Code/flutter_stable/] git ls-remote --get-url origin [ +12 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ +75 ms] executing: [/Users/tahatesser/Code/flutter_stable/] git rev-parse --abbrev-ref HEAD [ +11 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ +5 ms] executing: sw_vers -productName [ +15 ms] Exit code 0 from: sw_vers -productName [ ] Mac OS X [ ] executing: sw_vers -productVersion [ +14 ms] Exit code 0 from: sw_vers -productVersion [ ] 10.15.4 [ ] executing: sw_vers -buildVersion [ +13 ms] Exit code 0 from: sw_vers -buildVersion [ ] 19E287 [ +18 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ +5 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +12 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb devices -l [ +5 ms] executing: /usr/bin/xcode-select --print-path [ +7 ms] Exit code 0 from: /usr/bin/xcode-select --print-path [ ] /Applications/Xcode.app/Contents/Developer [ ] executing: /usr/bin/xcodebuild -version [ +486 ms] Exit code 0 from: /usr/bin/xcodebuild -version [ ] Xcode 11.4.1 Build version 11E503a [ +1 ms] executing: xcrun --find xcdevice [ +8 ms] Exit code 0 from: xcrun --find xcdevice [ ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice [ ] executing: xcrun xcdevice list --timeout 2 [ +4 ms] /usr/bin/xcrun simctl list --json devices [ ] executing: /usr/bin/xcrun simctl list --json devices [ +38 ms] List of devices attached ebdfec9e device usb:336855040X product:aosp_oneplus2 model:ONE_A2003 device:OnePlus2 transport_id:3 emulator-5554 device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:2 [ +91 ms] { "devices" : { "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [ { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/D4DF5B34-AC19-4094-BC52-083C43D61DF A\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/D4DF5B34-AC19-4094-BC52-083C43D61DFA", "udid" : "D4DF5B34-AC19-4094-BC52-083C43D61DFA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p", "state" : "Shutdown", "name" : "Apple TV" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/04C1C5E2-DE20-4612-9532-D9A1135581A 1\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/04C1C5E2-DE20-4612-9532-D9A1135581A1", "udid" : "04C1C5E2-DE20-4612-9532-D9A1135581A1", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K", "state" : "Shutdown", "name" : "Apple TV 4K" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/2CC1B92B-49EC-45FA-84FA-AE389E7C562 3\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/2CC1B92B-49EC-45FA-84FA-AE389E7C5623", "udid" : "2CC1B92B-49EC-45FA-84FA-AE389E7C5623", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p", "state" : "Shutdown", "name" : "Apple TV 4K (at 1080p)" } ], "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [ { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/390725B1-86B9-4D2E-82E6-49A82A9C8EE A\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/390725B1-86B9-4D2E-82E6-49A82A9C8EEA", "udid" : "390725B1-86B9-4D2E-82E6-49A82A9C8EEA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 40mm" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/B8801906-2B1D-4278-8E8F-E2E8B3EBD6C 2\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/B8801906-2B1D-4278-8E8F-E2E8B3EBD6C2", "udid" : "B8801906-2B1D-4278-8E8F-E2E8B3EBD6C2", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 4 - 44mm" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/2AD80929-8C8B-486E-BEA9-0D1802B8E85 8\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/2AD80929-8C8B-486E-BEA9-0D1802B8E858", "udid" : "2AD80929-8C8B-486E-BEA9-0D1802B8E858", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 40mm" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/F4DBCCFC-0EAB-4BFE-910D-5D92DD71F55 7\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/F4DBCCFC-0EAB-4BFE-910D-5D92DD71F557", "udid" : "F4DBCCFC-0EAB-4BFE-910D-5D92DD71F557", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm", "state" : "Shutdown", "name" : "Apple Watch Series 5 - 44mm" } ], "com.apple.CoreSimulator.SimRuntime.iOS-13-4" : [ { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/7A1DEA5A-1E0D-4355-BE91-38ADC811AF4 E\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/7A1DEA5A-1E0D-4355-BE91-38ADC811AF4E", "udid" : "7A1DEA5A-1E0D-4355-BE91-38ADC811AF4E", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8", "state" : "Shutdown", "name" : "iPhone 8" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/41E97145-AE40-4D0B-BDB0-A21797461B0 C\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/41E97145-AE40-4D0B-BDB0-A21797461B0C", "udid" : "41E97145-AE40-4D0B-BDB0-A21797461B0C", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus", "state" : "Shutdown", "name" : "iPhone 8 Plus" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/B00B6F4E-B1CE-44F3-B81E-3EC6D639B00 8\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/B00B6F4E-B1CE-44F3-B81E-3EC6D639B008", "udid" : "B00B6F4E-B1CE-44F3-B81E-3EC6D639B008", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11", "state" : "Shutdown", "name" : "iPhone 11" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/A7EF80C5-8713-43AC-9338-F7EF89A46C1 6\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/A7EF80C5-8713-43AC-9338-F7EF89A46C16", "udid" : "A7EF80C5-8713-43AC-9338-F7EF89A46C16", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro", "state" : "Shutdown", "name" : "iPhone 11 Pro" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/AF59DA81-2870-4C79-B213-743841C289B E\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/AF59DA81-2870-4C79-B213-743841C289BE", "udid" : "AF59DA81-2870-4C79-B213-743841C289BE", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max", "state" : "Shutdown", "name" : "iPhone 11 Pro Max" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/59677BD8-4FB7-4AAB-AC72-BE147B88EB0 B\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/59677BD8-4FB7-4AAB-AC72-BE147B88EB0B", "udid" : "59677BD8-4FB7-4AAB-AC72-BE147B88EB0B", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-", "state" : "Shutdown", "name" : "iPhone SE (2nd generation)" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/3C88555E-2D18-4D7A-B083-3E179B928F5 3\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/3C88555E-2D18-4D7A-B083-3E179B928F53", "udid" : "3C88555E-2D18-4D7A-B083-3E179B928F53", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-", "state" : "Shutdown", "name" : "iPad Pro (9.7-inch)" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/FB31351A-AFEE-4743-92F5-C5DA3B3D1DC A\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/FB31351A-AFEE-4743-92F5-C5DA3B3D1DCA", "udid" : "FB31351A-AFEE-4743-92F5-C5DA3B3D1DCA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-", "state" : "Shutdown", "name" : "iPad (7th generation)" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/13A4D3A9-A5A7-426F-997B-FF52D02D940 0\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/13A4D3A9-A5A7-426F-997B-FF52D02D9400", "udid" : "13A4D3A9-A5A7-426F-997B-FF52D02D9400", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-", "state" : "Shutdown", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/56E2D053-DB4A-4EA5-8DCC-9FB04945947 C\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/56E2D053-DB4A-4EA5-8DCC-9FB04945947C", "udid" : "56E2D053-DB4A-4EA5-8DCC-9FB04945947C", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-", "state" : "Shutdown", "name" : "iPad Pro (12.9-inch) (4th generation)" }, { "dataPath" : "\/Users\/tahatesser\/Library\/Developer\/CoreSimulator\/Devices\/6D51D4BF-E475-4830-8E82-4ED85E09A5A A\/data", "logPath" : "\/Users\/tahatesser\/Library\/Logs\/CoreSimulator\/6D51D4BF-E475-4830-8E82-4ED85E09A5AA", "udid" : "6D51D4BF-E475-4830-8E82-4ED85E09A5AA", "isAvailable" : true, "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-", "state" : "Shutdown", "name" : "iPad Air (3rd generation)" } ] } } [+2957 ms] [ { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,4", "identifier" : "7A1DEA5A-1E0D-4355-BE91-38ADC811AF4E", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-2", "modelName" : "iPhone 8", "name" : "iPhone 8" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone10,5", "identifier" : "41E97145-AE40-4D0B-BDB0-A21797461B0C", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-8-plus-2", "modelName" : "iPhone 8 Plus", "name" : "iPhone 8 Plus" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,1", "identifier" : "B00B6F4E-B1CE-44F3-B81E-3EC6D639B008", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-1", "modelName" : "iPhone 11", "name" : "iPhone 11" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad11,3", "identifier" : "6D51D4BF-E475-4830-8E82-4ED85E09A5AA", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-air3-wifi-1", "modelName" : "iPad Air (3rd generation)", "name" : "iPad Air (3rd generation)" }, { "simulator" : true, "operatingSystemVersion" : "6.2 (17T256)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,4", "identifier" : "F4DBCCFC-0EAB-4BFE-910D-5D92DD71F557", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 44mm", "name" : "Apple Watch Series 5 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "6.2 (17T256)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,3", "identifier" : "390725B1-86B9-4D2E-82E6-49A82A9C8EEA", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 40mm", "name" : "Apple Watch Series 4 - 40mm" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,9", "identifier" : "13A4D3A9-A5A7-426F-997B-FF52D02D9400", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-11-2nd-1", "modelName" : "iPad Pro (11-inch) (2nd generation)", "name" : "iPad Pro (11-inch) (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "04C1C5E2-DE20-4612-9532-D9A1135581A1", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K", "name" : "Apple TV 4K" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,3", "identifier" : "A7EF80C5-8713-43AC-9338-F7EF89A46C16", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-1", "modelName" : "iPhone 11 Pro", "name" : "iPhone 11 Pro" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV5,3", "identifier" : "D4DF5B34-AC19-4094-BC52-083C43D61DFA", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4", "modelName" : "Apple TV", "name" : "Apple TV" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad8,12", "identifier" : "56E2D053-DB4A-4EA5-8DCC-9FB04945947C", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-12point9-4th-1", "modelName" : "iPad Pro (12.9-inch) (4th generation)", "name" : "iPad Pro (12.9-inch) (4th generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,5", "identifier" : "AF59DA81-2870-4C79-B213-743841C289BE", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-11-pro-max-1", "modelName" : "iPhone 11 Pro Max", "name" : "iPhone 11 Pro Max" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPhone12,8", "identifier" : "59677BD8-4FB7-4AAB-AC72-BE147B88EB0B", "architecture" : "x86_64", "modelUTI" : "com.apple.iphone-se-1", "modelName" : "iPhone SE (2nd generation)", "name" : "iPhone SE (2nd generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad7,12", "identifier" : "FB31351A-AFEE-4743-92F5-C5DA3B3D1DCA", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-7-wwan-1", "modelName" : "iPad (7th generation)", "name" : "iPad (7th generation)" }, { "simulator" : true, "operatingSystemVersion" : "13.4 (17L255)", "available" : true, "platform" : "com.apple.platform.appletvsimulator", "modelCode" : "AppleTV6,2", "identifier" : "2CC1B92B-49EC-45FA-84FA-AE389E7C5623", "architecture" : "x86_64", "modelUTI" : "com.apple.apple-tv-4k", "modelName" : "Apple TV 4K (at 1080p)", "name" : "Apple TV 4K (at 1080p)" }, { "simulator" : true, "operatingSystemVersion" : "6.2 (17T256)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch4,4", "identifier" : "B8801906-2B1D-4278-8E8F-E2E8B3EBD6C2", "architecture" : "i386", "modelUTI" : "com.apple.watch-series4-1", "modelName" : "Apple Watch Series 4 - 44mm", "name" : "Apple Watch Series 4 - 44mm" }, { "simulator" : true, "operatingSystemVersion" : "13.4.1 (17E8260)", "available" : true, "platform" : "com.apple.platform.iphonesimulator", "modelCode" : "iPad6,4", "identifier" : "3C88555E-2D18-4D7A-B083-3E179B928F53", "architecture" : "x86_64", "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba", "modelName" : "iPad Pro (9.7-inch)", "name" : "iPad Pro (9.7-inch)" }, { "simulator" : true, "operatingSystemVersion" : "6.2 (17T256)", "available" : true, "platform" : "com.apple.platform.watchsimulator", "modelCode" : "Watch5,3", "identifier" : "2AD80929-8C8B-486E-BEA9-0D1802B8E858", "architecture" : "i386", "modelUTI" : "com.apple.watch-series5-1", "modelName" : "Apple Watch Series 5 - 40mm", "name" : "Apple Watch Series 5 - 40mm" } ] [ +21 ms] /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell getprop [ +89 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update. [ +5 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +129 ms] Found plugin url_launcher at /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.4.7/ [ +10 ms] Found plugin url_launcher_macos at /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-0.0.1+5/ [ +6 ms] Found plugin url_launcher_web at /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-0.1.1+5/ [ +61 ms] Found plugin url_launcher at /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.4.7/ [ +1 ms] Found plugin url_launcher_macos at /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher_macos-0.0.1+5/ [ +2 ms] Found plugin url_launcher_web at /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher_web-0.1.1+5/ [ +50 ms] Generating /Users/tahatesser/AndroidStudioProjects/beta_flutter/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistr ant.java [ +26 ms] ro.hardware = qcom [ +45 ms] Launching lib/main.dart on ONE A2003 in debug mode... [ +6 ms] /Users/tahatesser/Code/flutter_stable/bin/cache/dart-sdk/bin/dart /Users/tahatesser/Code/flutter_stable/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/tahatesser/Code/flutter_stable/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/_3/cgrjm48n6tqf3vqhxwm71_0w0000gn/T/flutter_tool.RK4ohv/app.dill --packages /Users/tahatesser/AndroidStudioProjects/beta_flutter/.packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoi d-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/cache.dill [ +11 ms] executing: /Users/tahatesser/Code/SDK/build-tools/29.0.3/aapt dump xmltree /Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/outputs/apk/app.apk AndroidManifest.xml [ +16 ms] Exit code 0 from: /Users/tahatesser/Code/SDK/build-tools/29.0.3/aapt dump xmltree /Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/outputs/apk/app.apk AndroidManifest.xml [ ] N: android=http://schemas.android.com/apk/res/android E: manifest (line=2) A: android:versionCode(0x0101021b)=(type 0x10)0x1 A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0") A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9") A: package="com.nevercode.triage.beta_flutter" (Raw: "com.nevercode.triage.beta_flutter") A: platformBuildVersionCode=(type 0x10)0x1c A: platformBuildVersionName=(type 0x10)0x9 E: uses-sdk (line=7) A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c E: uses-permission (line=14) A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET") E: application (line=22) A: android:label(0x01010001)="beta_flutter" (Raw: "beta_flutter") A: android:icon(0x01010002)=@0x7f080000 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication") A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory") E: activity (line=28) A: android:theme(0x01010000)=@0x7f0a0000 A: android:name(0x01010003)="com.nevercode.triage.beta_flutter.MainActivity" (Raw: "com.nevercode.triage.beta_flutter.MainActivity") A: android:launchMode(0x0101001d)=(type 0x10)0x1 A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4 A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10 A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff E: meta-data (line=42) A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme") A: android:resource(0x01010025)=@0x7f0a0001 E: meta-data (line=52) A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable") A: android:resource(0x01010025)=@0x7f040000 E: intent-filter (line=56) E: action (line=57) A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN") E: category (line=59) A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER") E: meta-data (line=66) A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding") A: android:value(0x01010024)=(type 0x10)0x2 E: activity (line=70) A: android:theme(0x01010000)=@0x01030007 A: android:name(0x01010003)="io.flutter.plugins.urllauncher.WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.WebViewActivity") A: android:exported(0x01010010)=(type 0x12)0x0 [ +9 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell -x logcat -v time -t 1 [ +104 ms] Exit code 0 from: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell -x logcat -v time -t 1 [ ] --------- beginning of main 05-14 20:30:55.864 D/QtiCarrierConfigHelper( 1766): Invalid phone ID: -1 [ +15 ms] <- compile package:beta_flutter/main.dart [ +9 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb version [ +9 ms] Android Debug Bridge version 1.0.41 Version 30.0.1-6435776 Installed as /Users/tahatesser/Code/SDK/platform-tools/adb [ +4 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb start-server [ +18 ms] Building APK [ +40 ms] Running Gradle task 'assembleDebug'... [ +2 ms] gradle.properties already sets `android.enableR8` [ +4 ms] Using gradle from /Users/tahatesser/AndroidStudioProjects/beta_flutter/android/gradlew. [ +1 ms] /Users/tahatesser/AndroidStudioProjects/beta_flutter/android/gradlew mode: 33261 rwxr-xr-x. [ +12 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist [ +24 ms] Exit code 0 from: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist [ ] {"CFBundleName":"Android Studio","JVMOptions":{"ClassPath":"$APP_PACKAGE\/Contents\/lib\/bootstrap.jar:$APP_PACKAGE\/Contents\/lib\/extensions.ja r:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_PACKAGE\/Contents\/lib\/log4j.jar:$AP P_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\/lib\/jna.jar","JVMVersion":"1.8*,1.8+","WorkingDirectory": "$APP_PACKAGE\/Contents\/bin","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio3.6 ","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDeskt opFolderUsageDescription":"An application in Android Studio requests access to the user's Desktop folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-192.7142.36.36.6392135","CFBundleDevelopmentRegion":" English","NSCameraUsageDescription":"An application in Android Studio requests access to the device's camera.","CFBundleDocumentTypes":[{"CFBundleTypeName":"Android Studio Project File","CFBundleTypeExtensions":["ipr"],"CFBundleTypeRole":"Editor","CFBundleTypeIconFile":"studio.icns"},{"CFBundleTypeN ame":"All documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":f alse}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFBundleIconFile":"studio.icns","NSHigh ResolutionCapable":true,"CFBundleShortVersionString":"3.6","NSMicrophoneUsageDescription":"An application in Android Studio requests access to the device's microphone.","CFBundleInfoDictionaryVersion":"6.0","CFBundleExecutable":"studio","NSLocationUsageDescription":"An application in Android Studio requests access to the user's location information.","LSRequiresNativeExecution":"YES","CFBundleURLTypes":[{"CFBundleTypeRole":"Editor","CFBundleURLName":"Stac ktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio","LSApplicationCategoryType":"pu blic.app-category.developer-tools","CFBundleSignature":"????","LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDes cription":"An application in Android Studio requests access to the user's Documents folder.","NSDownloadsFolderUsageDescription":"An application in Android Studio requests access to the user's Downloads folder.","NSNetworkVolumesUsageDescription":"An application in Android Studio requests access to files on a network volume.","CFBundleGetInfoString":"Android Studio 3.6, build AI-192.7142.36.36.6392135. Copyright JetBrains s.r.o., (c) 2000-2020","NSRemovableVolumesUsageDescription":"An application in Android Studio requests access to files on a removable volume."} [ +15 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version [ +153 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version [ ] openjdk version "1.8.0_212-release" OpenJDK Runtime Environment (build 1.8.0_212-release-1586-b4-5784211) OpenJDK 64-Bit Server VM (build 25.212-b4-5784211, mixed mode) [ +2 ms] executing: [/Users/tahatesser/AndroidStudioProjects/beta_flutter/android/] /Users/tahatesser/AndroidStudioProjects/beta_flutter/android/gradlew -Pverbose=true -Ptarget-platform=android-arm64 -Ptarget=/Users/tahatesser/AndroidStudioProjects/beta_flutter/lib/main.dart -Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root assembleDebug [+1616 ms] > Task :app:compileFlutterBuildDebug UP-TO-DATE [ ] > Task :app:packLibsflutterBuildDebug UP-TO-DATE [ ] > Task :app:preBuild UP-TO-DATE [ ] > Task :app:preDebugBuild UP-TO-DATE [ ] > Task :url_launcher:preBuild UP-TO-DATE [ ] > Task :url_launcher:preDebugBuild UP-TO-DATE [ ] > Task :url_launcher_macos:preBuild UP-TO-DATE [ ] > Task :url_launcher_macos:preDebugBuild UP-TO-DATE [ ] > Task :url_launcher_web:preBuild UP-TO-DATE [ ] > Task :url_launcher_web:preDebugBuild UP-TO-DATE [ ] > Task :url_launcher:packageDebugRenderscript NO-SOURCE [ ] > Task :url_launcher_macos:compileDebugAidl NO-SOURCE [ ] > Task :url_launcher_web:compileDebugAidl NO-SOURCE [ ] > Task :url_launcher:compileDebugAidl NO-SOURCE [ ] > Task :app:compileDebugAidl NO-SOURCE [ ] > Task :url_launcher_macos:packageDebugRenderscript NO-SOURCE [ ] > Task :url_launcher_web:packageDebugRenderscript NO-SOURCE [ ] > Task :app:compileDebugRenderscript NO-SOURCE [ ] > Task :app:checkDebugManifest UP-TO-DATE [ ] > Task :app:generateDebugBuildConfig UP-TO-DATE [ +79 ms] > Task :app:cleanMergeDebugAssets [ ] > Task :app:mergeDebugShaders UP-TO-DATE [ ] > Task :app:compileDebugShaders UP-TO-DATE [ ] > Task :app:generateDebugAssets UP-TO-DATE [ ] > Task :url_launcher:mergeDebugShaders UP-TO-DATE [ ] > Task :url_launcher:compileDebugShaders UP-TO-DATE [ ] > Task :url_launcher:generateDebugAssets UP-TO-DATE [ ] > Task :url_launcher:packageDebugAssets UP-TO-DATE [ ] > Task :url_launcher_macos:mergeDebugShaders UP-TO-DATE [ ] > Task :url_launcher_macos:compileDebugShaders UP-TO-DATE [ ] > Task :url_launcher_macos:generateDebugAssets UP-TO-DATE [ ] > Task :url_launcher_macos:packageDebugAssets UP-TO-DATE [ ] > Task :url_launcher_web:mergeDebugShaders UP-TO-DATE [ ] > Task :url_launcher_web:compileDebugShaders UP-TO-DATE [ ] > Task :url_launcher_web:generateDebugAssets UP-TO-DATE [ ] > Task :url_launcher_web:packageDebugAssets UP-TO-DATE [ ] > Task :app:mergeDebugAssets [ +200 ms] > Task :app:copyFlutterAssetsDebug [ ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE [ ] > Task :app:generateDebugResValues UP-TO-DATE [ ] > Task :app:generateDebugResources UP-TO-DATE [ ] > Task :url_launcher:generateDebugResValues UP-TO-DATE [ ] > Task :url_launcher:compileDebugRenderscript NO-SOURCE [ ] > Task :url_launcher:generateDebugResources UP-TO-DATE [ ] > Task :url_launcher:packageDebugResources UP-TO-DATE [ ] > Task :url_launcher_macos:generateDebugResValues UP-TO-DATE [ ] > Task :url_launcher_macos:compileDebugRenderscript NO-SOURCE [ ] > Task :url_launcher_macos:generateDebugResources UP-TO-DATE [ ] > Task :url_launcher_macos:packageDebugResources UP-TO-DATE [ ] > Task :url_launcher_web:generateDebugResValues UP-TO-DATE [ ] > Task :url_launcher_web:compileDebugRenderscript NO-SOURCE [ ] > Task :url_launcher_web:generateDebugResources UP-TO-DATE [ ] > Task :url_launcher_web:packageDebugResources UP-TO-DATE [ ] > Task :app:mergeDebugResources UP-TO-DATE [ ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE [ ] > Task :url_launcher:checkDebugManifest UP-TO-DATE [ ] > Task :url_launcher:processDebugManifest UP-TO-DATE [ ] > Task :url_launcher_macos:checkDebugManifest UP-TO-DATE [ ] > Task :url_launcher_macos:processDebugManifest UP-TO-DATE [ ] > Task :url_launcher_web:checkDebugManifest UP-TO-DATE [ ] > Task :url_launcher_web:processDebugManifest UP-TO-DATE [ ] > Task :app:processDebugManifest UP-TO-DATE [ +91 ms] > Task :url_launcher:parseDebugLibraryResources UP-TO-DATE [ ] > Task :url_launcher_macos:parseDebugLibraryResources UP-TO-DATE [ ] > Task :url_launcher_macos:generateDebugRFile UP-TO-DATE [ ] > Task :url_launcher_web:parseDebugLibraryResources UP-TO-DATE [ ] > Task :url_launcher_web:generateDebugRFile UP-TO-DATE [ ] > Task :url_launcher:generateDebugRFile UP-TO-DATE [ ] > Task :app:processDebugResources UP-TO-DATE [ ] > Task :url_launcher:generateDebugBuildConfig UP-TO-DATE [ ] > Task :url_launcher_macos:generateDebugBuildConfig UP-TO-DATE [ ] > Task :url_launcher_web:generateDebugBuildConfig UP-TO-DATE [ ] > Task :url_launcher_web:javaPreCompileDebug [ +99 ms] > Task :url_launcher_web:compileDebugJavaWithJavac [ ] > Task :url_launcher_web:bundleLibCompileDebug UP-TO-DATE [ ] > Task :url_launcher_macos:javaPreCompileDebug [ ] > Task :url_launcher_macos:compileDebugJavaWithJavac [ ] > Task :url_launcher_macos:bundleLibCompileDebug UP-TO-DATE [ ] > Task :app:processDebugJavaRes NO-SOURCE [ ] > Task :url_launcher:processDebugJavaRes NO-SOURCE [ ] > Task :url_launcher_macos:processDebugJavaRes NO-SOURCE [ ] > Task :url_launcher_macos:bundleLibResDebug UP-TO-DATE [ ] > Task :url_launcher_web:processDebugJavaRes NO-SOURCE [ ] > Task :url_launcher_web:bundleLibResDebug UP-TO-DATE [ ] > Task :url_launcher_web:bundleLibRuntimeDebug UP-TO-DATE [ ] > Task :url_launcher_web:createFullJarDebug UP-TO-DATE [ ] > Task :url_launcher_macos:bundleLibRuntimeDebug UP-TO-DATE [ ] > Task :url_launcher_macos:createFullJarDebug UP-TO-DATE [ ] > Task :url_launcher:javaPreCompileDebug [ +198 ms] > Task :url_launcher:compileDebugJavaWithJavac [ ] > Task :url_launcher:bundleLibCompileDebug UP-TO-DATE [ ] Note: /Users/tahatesser/Code/flutter_beta/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.4.7/android/src/main/java/io/flutt er/plugins/urllauncher/WebViewActivity.java uses or overrides a deprecated API. [ ] Note: Recompile with -Xlint:deprecation for details. [ +599 ms] > Task :app:compileDebugKotlin [ ] > Task :url_launcher:bundleLibResDebug UP-TO-DATE [ ] > Task :url_launcher:bundleLibRuntimeDebug UP-TO-DATE [ ] > Task :url_launcher:createFullJarDebug UP-TO-DATE [ ] > Task :app:javaPreCompileDebug [ +195 ms] > Task :app:compileDebugJavaWithJavac [ ] > Task :app:compileDebugSources [ ] > Task :app:checkDebugDuplicateClasses [ +200 ms] > Task :app:transformClassesWithDexBuilderForDebug [ ] > Task :app:validateSigningDebug UP-TO-DATE [ ] > Task :app:signingConfigWriterDebug UP-TO-DATE [ ] > Task :app:desugarDebugFileDependencies [ ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE [ ] > Task :url_launcher:mergeDebugJniLibFolders UP-TO-DATE [ ] > Task :url_launcher:mergeDebugNativeLibs UP-TO-DATE [ ] > Task :url_launcher:stripDebugDebugSymbols UP-TO-DATE [ ] > Task :url_launcher:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE [ ] > Task :url_launcher_macos:mergeDebugJniLibFolders UP-TO-DATE [ ] > Task :url_launcher_macos:mergeDebugNativeLibs UP-TO-DATE [ ] > Task :url_launcher_macos:stripDebugDebugSymbols UP-TO-DATE [ ] > Task :url_launcher_macos:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE [ ] > Task :url_launcher_web:mergeDebugJniLibFolders UP-TO-DATE [ ] > Task :url_launcher_web:mergeDebugNativeLibs UP-TO-DATE [ ] > Task :url_launcher_web:stripDebugDebugSymbols UP-TO-DATE [ ] > Task :url_launcher_web:transformNativeLibsWithIntermediateJniLibsForDebug UP-TO-DATE [ +95 ms] > Task :url_launcher:extractDebugAnnotations [ ] > Task :url_launcher:mergeDebugGeneratedProguardFiles UP-TO-DATE [ ] > Task :url_launcher:mergeDebugConsumerProguardFiles UP-TO-DATE [ ] > Task :url_launcher:prepareLintJarForPublish UP-TO-DATE [ ] > Task :url_launcher:mergeDebugJavaResource UP-TO-DATE [ ] > Task :url_launcher:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE [ ] > Task :url_launcher:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE [ ] > Task :url_launcher:bundleDebugAar UP-TO-DATE [ ] > Task :url_launcher_macos:extractDebugAnnotations [ ] > Task :url_launcher:mergeDebugResources UP-TO-DATE [ ] > Task :url_launcher:compileDebugSources [ ] > Task :url_launcher:assembleDebug [ ] > Task :url_launcher_macos:mergeDebugGeneratedProguardFiles UP-TO-DATE [ ] > Task :url_launcher_macos:mergeDebugConsumerProguardFiles UP-TO-DATE [ ] > Task :url_launcher_macos:prepareLintJarForPublish UP-TO-DATE [ ] > Task :url_launcher_macos:mergeDebugJavaResource UP-TO-DATE [ ] > Task :url_launcher_macos:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE [ ] > Task :url_launcher_macos:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE [ ] > Task :url_launcher_macos:bundleDebugAar UP-TO-DATE [ ] > Task :url_launcher_macos:compileDebugSources [ ] > Task :url_launcher_macos:assembleDebug [ ] > Task :url_launcher_web:extractDebugAnnotations [ ] > Task :url_launcher_web:mergeDebugGeneratedProguardFiles UP-TO-DATE [ ] > Task :url_launcher_web:mergeDebugConsumerProguardFiles UP-TO-DATE [ +2 ms] > Task :url_launcher_web:prepareLintJarForPublish UP-TO-DATE [ ] > Task :url_launcher_web:mergeDebugJavaResource UP-TO-DATE [ ] > Task :url_launcher_web:transformClassesAndResourcesWithSyncLibJarsForDebug UP-TO-DATE [ ] > Task :url_launcher_web:transformNativeLibsWithSyncJniLibsForDebug UP-TO-DATE [ ] > Task :url_launcher_web:bundleDebugAar UP-TO-DATE [ ] > Task :url_launcher_web:compileDebugSources [ ] > Task :url_launcher_web:assembleDebug [ +89 ms] > Task :app:mergeDebugJavaResource [ +304 ms] > Task :app:mergeExtDexDebug [ +499 ms] > Task :app:mergeDexDebug [ +399 ms] > Task :app:mergeDebugNativeLibs [ +501 ms] > Task :app:stripDebugDebugSymbols [ ] Compatible side by side NDK version was not found. [ ] Unable to strip library '/Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/intermediates/merged_native_libs/debug/out/lib/x86/libfl utter.so' due to missing strip tool for ABI 'X86'. Packaging it as is. [ ] Unable to strip library '/Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/intermediates/merged_native_libs/debug/out/lib/arm64-v8a /libflutter.so' due to missing strip tool for ABI 'ARM64_V8A'. Packaging it as is. [ ] Unable to strip library '/Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/intermediates/merged_native_libs/debug/out/lib/x86_64/li bflutter.so' due to missing strip tool for ABI 'X86_64'. Packaging it as is. [+2697 ms] > Task :app:packageDebug [ +100 ms] > Task :app:assembleDebug [ ] Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0. [ ] Use '--warning-mode all' to show the individual deprecation warnings. [ ] See https://docs.gradle.org/5.6.2/userguide/command_line_interface.html#sec:command_line_warnings [ ] BUILD SUCCESSFUL in 7s [ ] 116 actionable tasks: 25 executed, 91 up-to-date [ +414 ms] Running Gradle task 'assembleDebug'... (completed in 8.6s) [ +48 ms] calculateSha: LocalDirectory: '/Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/outputs/apk'/app.apk [ +66 ms] calculateSha: reading file took 65us [ +544 ms] calculateSha: computing sha took 543us [ +3 ms] ✓ Built build/app/outputs/apk/debug/app-debug.apk. [ +5 ms] executing: /Users/tahatesser/Code/SDK/build-tools/29.0.3/aapt dump xmltree /Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/outputs/apk/app.apk AndroidManifest.xml [ +9 ms] Exit code 0 from: /Users/tahatesser/Code/SDK/build-tools/29.0.3/aapt dump xmltree /Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/outputs/apk/app.apk AndroidManifest.xml [ ] N: android=http://schemas.android.com/apk/res/android E: manifest (line=2) A: android:versionCode(0x0101021b)=(type 0x10)0x1 A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0") A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9") A: package="com.nevercode.triage.beta_flutter" (Raw: "com.nevercode.triage.beta_flutter") A: platformBuildVersionCode=(type 0x10)0x1c A: platformBuildVersionName=(type 0x10)0x9 E: uses-sdk (line=7) A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c E: uses-permission (line=14) A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET") E: application (line=22) A: android:label(0x01010001)="beta_flutter" (Raw: "beta_flutter") A: android:icon(0x01010002)=@0x7f080000 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication") A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory") E: activity (line=28) A: android:theme(0x01010000)=@0x7f0a0000 A: android:name(0x01010003)="com.nevercode.triage.beta_flutter.MainActivity" (Raw: "com.nevercode.triage.beta_flutter.MainActivity") A: android:launchMode(0x0101001d)=(type 0x10)0x1 A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4 A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10 A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff E: meta-data (line=42) A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme") A: android:resource(0x01010025)=@0x7f0a0001 E: meta-data (line=52) A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable") A: android:resource(0x01010025)=@0x7f040000 E: intent-filter (line=56) E: action (line=57) A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN") E: category (line=59) A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER") E: meta-data (line=66) A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding") A: android:value(0x01010024)=(type 0x10)0x2 E: activity (line=70) A: android:theme(0x01010000)=@0x01030007 A: android:name(0x01010003)="io.flutter.plugins.urllauncher.WebViewActivity" (Raw: "io.flutter.plugins.urllauncher.WebViewActivity") A: android:exported(0x01010010)=(type 0x12)0x0 [ +13 ms] Stopping app 'app.apk' on ONE A2003. [ +1 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell am force-stop com.nevercode.triage.beta_flutter [ +118 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell pm list packages com.nevercode.triage.beta_flutter [ +104 ms] package:com.nevercode.triage.beta_flutter [ +6 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell cat /data/local/tmp/sky.com.nevercode.triage.beta_flutter.sha1 [ +58 ms] 3d67384954322d9668e5c4270e39575d7dc0eab4 [ +1 ms] Installing APK. [ +3 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb version [ +11 ms] Android Debug Bridge version 1.0.41 Version 30.0.1-6435776 Installed as /Users/tahatesser/Code/SDK/platform-tools/adb [ +1 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb start-server [ +9 ms] Installing build/app/outputs/apk/app.apk... [ ] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e install -t -r /Users/tahatesser/AndroidStudioProjects/beta_flutter/build/app/outputs/apk/app.apk [+5572 ms] Performing Streamed Install Success [ ] Installing build/app/outputs/apk/app.apk... (completed in 5.6s) [ +2 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell echo -n ba8ae2b04e8e34818b7181c133d6609dfc69137a > /data/local/tmp/sky.com.nevercode.triage.beta_flutter.sha1 [ +191 ms] ONE A2003 startApp [ +2 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true --ez verify-entry-points true com.nevercode.triage.beta_flutter/com.nevercode.triage.beta_flutter.MainActivity [ +127 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.nevercode.triage.beta_flutter/.MainActivity (has extras) } [ +1 ms] Waiting for observatory port to be available... [+1421 ms] Observatory URL on device: http://127.0.0.1:42747/gAlabob0geA=/ [ +3 ms] executing: /Users/tahatesser/Code/SDK/platform-tools/adb -s ebdfec9e forward tcp:0 tcp:42747 [ +20 ms] 54426 [ ] Forwarded host port 54426 to device port 42747 for Observatory [ +15 ms] Connecting to service protocol: http://127.0.0.1:54426/gAlabob0geA=/ [ +353 ms] Successfully connected to service protocol: http://127.0.0.1:54426/gAlabob0geA=/ [ +3 ms] Sending to VM service: getVM({}) [ +9 ms] Result: {type: VM, name: vm, architectureBits: 64, hostCPU: Qualcomm Technologies, Inc MSM8994, operatingSystem: android, targetCPU: arm64, version: 2.8.2 (stable) (Mon May 11 15:06:42 2020 +0200) on "android_arm64", _profilerMode: VM, _nativeZoneMemoryUs... [ +8 ms] Sending to VM service: getIsolate({isolateId: isolates/4417000571650375}) [ +3 ms] Sending to VM service: _flutter.listViews({}) [ +5 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7efba30f20, isolate: {type: @Isolate, fixedId: true, id: isolates/4417000571650375, name: main.dart$main-4417000571650375, number: 4417000571650375}}]} [ +7 ms] DevFS: Creating new filesystem on the device (null) [ +1 ms] Sending to VM service: _createDevFS({fsName: beta_flutter}) [ +19 ms] Result: {type: Isolate, id: isolates/4417000571650375, name: main, number: 4417000571650375, _originNumber: 4417000571650375, startTime: 1589468472895, _heaps: {new: {type: HeapSpace, name: new, vmName: Scavenger, collections: 0, avgCollectionPeriodMillis... [ +26 ms] Result: {type: FileSystem, name: beta_flutter, uri: file:///data/user/0/com.nevercode.triage.beta_flutter/code_cache/beta_flutterXCTYIS/beta_flutter/} [ +1 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.nevercode.triage.beta_flutter/code_cache/beta_flutterXCTYIS/beta_flutter/) [ +4 ms] Updating assets [ +136 ms] Syncing files to device ONE A2003... [ +1 ms] Scanning asset files [ +2 ms] <- reset [ ] Compiling dart to kernel with 0 updated files [ +1 ms] <- recompile package:beta_flutter/main.dart 100e86a9-fec9-4bba-8e7d-fab2740fb29a [ ] <- 100e86a9-fec9-4bba-8e7d-fab2740fb29a [ +64 ms] Updating files [ +159 ms] DevFS: Sync finished [ +2 ms] Syncing files to device ONE A2003... (completed in 229ms) [ +1 ms] Synced 0.9MB. [ +2 ms] Sending to VM service: _flutter.listViews({}) [ +6 ms] Result: {type: FlutterViewList, views: [{type: FlutterView, id: _flutterView/0x7efba30f20, isolate: {type: @Isolate, fixedId: true, id: isolates/4417000571650375, name: main.dart$main-4417000571650375, number: 4417000571650375}}]} [ +1 ms] <- accept [ ] Connected to _flutterView/0x7efba30f20. [ +1 ms] Flutter run key commands. [ +1 ms] r Hot reload. 🔥🔥🔥 [ +1 ms] R Hot restart. [ ] h Repeat this help message. [ ] d Detach (terminate "flutter run" but leave application running). [ ] c Clear the screen [ ] q Quit (terminate the application on the device). [ ] An Observatory debugger and profiler on ONE A2003 is available at: http://127.0.0.1:54426/gAlabob0geA=/ ```

Thank you

jmagman commented 4 years ago

Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away!

Thanks for your contribution.

JesseRMeyer commented 4 years ago

I have a Moto E4 and can, at least at the moment reliably produce this error. Sample code here: https://gist.github.com/JesseRMeyer/ff69fcaf00e02dc794990f1d947121a8

It's essentially just a log in screen that leverages a few common examples and community packages.

Most important observation is that this error occurs: After launch() is called, which opens and directs Chrome to a (redacted) website. Chrome is closed and the focus is returned to the app. As the app is returning focus, the error is shown on VS Code's debug console.

[flutter] flutter doctor -v
[√] Flutter (Channel stable, v1.17.3, on Microsoft Windows [Version 10.0.18363.900], locale en-US)
    • Flutter version 1.17.3 at C:\dev\flutter
    • Framework revision b041144f83 (12 days ago), 2020-06-04 09:26:11 -0700
    • Engine revision ee76268252
    • Dart version 2.8.4

[√] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
    • Android SDK at C:\dev\Android
    • Platform android-29, build-tools 29.0.3
    • ANDROID_SDK_ROOT = C:\dev\Android
    • Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)
    • All Android licenses accepted.

[√] Android Studio (version 4.0)
    • Android Studio at C:\Program Files\Android\Android Studio
    • Flutter plugin version 46.0.2
    • Dart plugin version 193.7361
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)

[√] VS Code (version 1.46.0)
    • VS Code at C:\Users\Jesse Meyer\AppData\Local\Programs\Microsoft VS Code
    • Flutter extension version 3.11.0

[√] Connected device (1 available)
    • Moto E 4 • ZY2245BRZN • android-arm • Android 7.1.1 (API 25)

• No issues found!
exit code 0
no-response[bot] commented 4 years ago

Without additional information, we are unfortunately not sure how to resolve this issue. We are therefore reluctantly going to close this bug for now. Please don't hesitate to comment on the bug if you have any more information for us; we will reopen it right away! Thanks for your contribution.

JesseRMeyer commented 4 years ago

The poor bot despite its best efforts appears to be erroneously closing the issue. Commenting to re-open.

jmagman commented 4 years ago

Sorry, forgot to remove the label. The bot was just doing its job!

danagbemava-nc commented 4 days ago

Hi @JesseRMeyer @johnkenedyong and anyone else that faced this issue, can you check if this still reproduces on the latest stable version of flutter?