-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/packages
#3590Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listfound in release: 2.2Found to occur in 2.2Found to occur in 2.2found in release: 2.5Found to occur in 2.5Found to occur in 2.5has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onp: image_pickerThe Image Picker plugin.The Image Picker plugin.packageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-androidAndroid applications specificallyAndroid applications specifically
Description
Steps to Reproduce
- Run the following example on Android
- Tap on the floating action button
- Select an SVG from the device files
main.dart
import 'dart:typed_data';
import 'package:flutter/material.dart';
import 'package:image_picker/image_picker.dart';
final picker = ImagePicker();
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(home: MyHomePage());
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key? key}) : super(key: key);
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Uint8List? _image;
void _pickImage() async {
final image = await picker.pickImage(source: ImageSource.gallery);
if (image != null) {
_image = await image.readAsBytes();
setState(() {});
}
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Center(child: _image != null ? Image.memory(_image!) : SizedBox()),
floatingActionButton: FloatingActionButton(
onPressed: _pickImage,
child: Icon(Icons.image),
),
);
}
}pubspec.yaml
name: my_app
description: A new Flutter project.
publish_to: "none"
version: 1.0.0+1
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
image_picker: ^0.8.3+2
flutter:
uses-material-design: trueExpected results:
I would expect to either see the SVG image rendered just like other image formats or an error to be thrown indicating why the image could not be selected.
Actual results:
pickImage returns a null image so it's not possible to distinguish this error from a user cancelling the picker flow voluntarily.
Logs
"name" : "iPhone 11"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/900877D5-66BE-492E-8E1D-DD31121493AE\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/900877D5-66BE-492E-8E1D-DD31121493AE",
"udid" : "900877D5-66BE-492E-8E1D-DD31121493AE",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
"state" : "Shutdown",
"name" : "iPhone 11 Pro"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/363DDD82-B14A-4236-A1D7-5702604CFDE5\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/363DDD82-B14A-4236-A1D7-5702604CFDE5",
"udid" : "363DDD82-B14A-4236-A1D7-5702604CFDE5",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
"state" : "Shutdown",
"name" : "iPhone 11 Pro Max"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/3264E1C8-37B4-4647-AAD0-6AF721B3A900\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/3264E1C8-37B4-4647-AAD0-6AF721B3A900",
"udid" : "3264E1C8-37B4-4647-AAD0-6AF721B3A900",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
"state" : "Shutdown",
"name" : "iPhone SE (2nd generation)"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/6406D958-5F97-4A23-9111-86728CBA8FD5\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/6406D958-5F97-4A23-9111-86728CBA8FD5",
"udid" : "6406D958-5F97-4A23-9111-86728CBA8FD5",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-mini",
"state" : "Shutdown",
"name" : "iPhone 12 mini"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/B72EED36-6343-472F-8AEE-865BB09E89FC\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/B72EED36-6343-472F-8AEE-865BB09E89FC",
"udid" : "B72EED36-6343-472F-8AEE-865BB09E89FC",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12",
"state" : "Shutdown",
"name" : "iPhone 12"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/237048F6-17D1-4C7B-87A5-4F311CCD5D6D\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/237048F6-17D1-4C7B-87A5-4F311CCD5D6D",
"udid" : "237048F6-17D1-4C7B-87A5-4F311CCD5D6D",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro",
"state" : "Shutdown",
"name" : "iPhone 12 Pro"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/FA2721F6-00CD-4C79-B376-DF3D46B90F21\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/FA2721F6-00CD-4C79-B376-DF3D46B90F21",
"udid" : "FA2721F6-00CD-4C79-B376-DF3D46B90F21",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-12-Pro-Max",
"state" : "Shutdown",
"name" : "iPhone 12 Pro Max"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/FF85EA4B-375C-43EE-86A2-1A8C0E785D74\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/FF85EA4B-375C-43EE-86A2-1A8C0E785D74",
"udid" : "FF85EA4B-375C-43EE-86A2-1A8C0E785D74",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPod-touch--7th-generation-",
"state" : "Shutdown",
"name" : "iPod touch (7th generation)"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/50B7A8E7-1AC3-40DA-A51C-E6C1FB17F329\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/50B7A8E7-1AC3-40DA-A51C-E6C1FB17F329",
"udid" : "50B7A8E7-1AC3-40DA-A51C-E6C1FB17F329",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
"state" : "Shutdown",
"name" : "iPad Pro (9.7-inch)"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/4BE81927-DC12-4C4B-85A5-DF8B7CEAA70F\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/4BE81927-DC12-4C4B-85A5-DF8B7CEAA70F",
"udid" : "4BE81927-DC12-4C4B-85A5-DF8B7CEAA70F",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--8th-generation-",
"state" : "Shutdown",
"name" : "iPad (8th generation)"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/13032A94-3DD0-4613-BF59-06818108F87C\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/13032A94-3DD0-4613-BF59-06818108F87C",
"udid" : "13032A94-3DD0-4613-BF59-06818108F87C",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--4th-generation-",
"state" : "Shutdown",
"name" : "iPad Air (4th generation)"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/BA1425F7-473B-413F-B60C-B4120E8E719A\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/BA1425F7-473B-413F-B60C-B4120E8E719A",
"udid" : "BA1425F7-473B-413F-B60C-B4120E8E719A",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-11-inch-3rd-generation",
"state" : "Shutdown",
"name" : "iPad Pro (11-inch) (3rd generation)"
},
{
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/A2E3F951-B358-428C-83E4-D285A425492A\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/A2E3F951-B358-428C-83E4-D285A425492A",
"udid" : "A2E3F951-B358-428C-83E4-D285A425492A",
"isAvailable" : true,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro-12-9-inch-5th-generation",
"state" : "Shutdown",
"name" : "iPad Pro (12.9-inch) (5th generation)"
}
],
"com.apple.CoreSimulator.SimRuntime.tvOS-14-0" : [
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/6C781936-B73E-4565-9209-73AA4176A57B\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/6C781936-B73E-4565-9209-73AA4176A57B",
"udid" : "6C781936-B73E-4565-9209-73AA4176A57B",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
"state" : "Shutdown",
"name" : "Apple TV"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/5E80E7D3-3FC9-41CE-BC21-96081481676F\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/5E80E7D3-3FC9-41CE-BC21-96081481676F",
"udid" : "5E80E7D3-3FC9-41CE-BC21-96081481676F",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
"state" : "Shutdown",
"name" : "Apple TV 4K"
},
{
"availabilityError" : "runtime profile not found",
"dataPath" : "\/Users\/felix\/Library\/Developer\/CoreSimulator\/Devices\/16374370-4502-4790-BBFE-B19CB2BD7C7F\/data",
"logPath" : "\/Users\/felix\/Library\/Logs\/CoreSimulator\/16374370-4502-4790-BBFE-B19CB2BD7C7F",
"udid" : "16374370-4502-4790-BBFE-B19CB2BD7C7F",
"isAvailable" : false,
"deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
"state" : "Shutdown",
"name" : "Apple TV 4K (at 1080p)"
}
]
}
}
[+3268 ms] [
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone13,3",
"identifier" : "237048F6-17D1-4C7B-87A5-4F311CCD5D6D",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-12-pro-1",
"modelName" : "iPhone 12 Pro",
"name" : "iPhone 12 Pro"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad11,7",
"identifier" : "4BE81927-DC12-4C4B-85A5-DF8B7CEAA70F",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-8-wwan-1",
"modelName" : "iPad (8th generation)",
"name" : "iPad (8th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18L191)",
"available" : true,
"platform" : "com.apple.platform.appletvsimulator",
"modelCode" : "AppleTV11,1",
"identifier" : "6FA12DA5-024C-4B5D-BB9C-767A7E36CEB2",
"architecture" : "x86_64",
"modelUTI" : "com.apple.apple-tv-4k-2nd",
"modelName" : "Apple TV 4K (2nd generation)",
"name" : "Apple TV 4K (2nd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,3",
"identifier" : "900877D5-66BE-492E-8E1D-DD31121493AE",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-pro-1",
"modelName" : "iPhone 11 Pro",
"name" : "iPhone 11 Pro"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,8",
"identifier" : "3264E1C8-37B4-4647-AAD0-6AF721B3A900",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-se-1",
"modelName" : "iPhone SE (2nd generation)",
"name" : "iPhone SE (2nd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,4",
"identifier" : "8548A9CC-A9D2-4C8A-B51D-475737261C94",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-2",
"modelName" : "iPhone 8",
"name" : "iPhone 8"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,4",
"identifier" : "5891C2BD-8FC9-41FD-9781-18FE88C3EDD1",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-2",
"modelName" : "iPhone 8",
"name" : "iPhone 8"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad13,2",
"identifier" : "13032A94-3DD0-4613-BF59-06818108F87C",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-air4-1",
"modelName" : "iPad Air (4th generation)",
"name" : "iPad Air (4th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone13,2",
"identifier" : "B72EED36-6343-472F-8AEE-865BB09E89FC",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-12-1",
"modelName" : "iPhone 12",
"name" : "iPhone 12"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18L191)",
"available" : true,
"platform" : "com.apple.platform.appletvsimulator",
"modelCode" : "AppleTV11,1",
"identifier" : "4B93BAAC-DBCE-4418-AF3F-118FF6CA95B5",
"architecture" : "x86_64",
"modelUTI" : "com.apple.apple-tv-4k-2nd",
"modelName" : "Apple TV 4K (at 1080p) (2nd generation)",
"name" : "Apple TV 4K (at 1080p) (2nd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad7,12",
"identifier" : "1D27A225-8B58-4380-9BAE-1C952052DA61",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-7-wwan-1",
"modelName" : "iPad (7th generation)",
"name" : "iPad (7th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18L191)",
"available" : true,
"platform" : "com.apple.platform.appletvsimulator",
"modelCode" : "AppleTV5,3",
"identifier" : "6209DC5F-24FA-45B3-9585-FFC4CDAE1D4E",
"architecture" : "x86_64",
"modelUTI" : "com.apple.apple-tv-4",
"modelName" : "Apple TV",
"name" : "Apple TV"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad8,1",
"identifier" : "DF261734-3D25-4A38-8F1A-45B647457C5B",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-11-1",
"modelName" : "iPad Pro (11-inch) (1st generation)",
"name" : "iPad Pro (11-inch)"
},
{
"modelCode" : "iPhone10,3",
"simulator" : false,
"modelName" : "iPhone X (Model A1865, A1901, A1902, A1903)",
"error" : {
"code" : -13,
"failureReason" : "",
"underlyingErrors" : [
{
"code" : 3,
"failureReason" : "",
"description" : "Felix’s iPhone is locked.",
"recoverySuggestion" : "To use Felix’s iPhone with Xcode, unlock it.",
"domain" : "DVTDeviceIneligibilityErrorDomain"
}
],
"description" : "Felix’s iPhone is not connected",
"recoverySuggestion" : "Xcode will continue when Felix’s iPhone is connected.",
"domain" : "com.apple.platform.iphoneos"
},
"operatingSystemVersion" : "14.7.1 (18G82)",
"identifier" : "82b15a4a69ad47c74fe3e71b62a6a6e2842efe25",
"platform" : "com.apple.platform.iphoneos",
"architecture" : "arm64",
"interface" : "usb",
"available" : false,
"name" : "Felix’s iPhone",
"modelUTI" : "com.apple.iphone-x-1"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad8,5",
"identifier" : "E0992F7E-7E77-4DDC-8145-AC8133F53889",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-12point9-1",
"modelName" : "iPad Pro (12.9-inch) (3rd generation)",
"name" : "iPad Pro (12.9-inch) (3rd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "7.4 (18T187)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch6,2",
"identifier" : "60DD3794-AA0E-4B64-8AE6-EBEB048135B4",
"architecture" : "x86_64",
"modelUTI" : "com.apple.watch-series6-1",
"modelName" : "Apple Watch Series 6 - 44mm",
"name" : "Apple Watch Series 6 - 44mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,3",
"identifier" : "DEAA9CB8-F95F-4A04-B92B-F34DEB6B5CA2",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-pro-1",
"modelName" : "iPhone 11 Pro",
"name" : "iPhone 11 Pro"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad11,3",
"identifier" : "6A66D6B4-9A3B-40FA-B160-6E3B8835CE13",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-air3-wifi-1",
"modelName" : "iPad Air (3rd generation)",
"name" : "iPad Air (3rd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,1",
"identifier" : "88DE54C7-C3D1-4C13-882D-677E6172587A",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-1",
"modelName" : "iPhone 11",
"name" : "iPhone 11"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,5",
"identifier" : "B936186E-740A-4C81-B680-DC82AB907CC8",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-plus-2",
"modelName" : "iPhone 8 Plus",
"name" : "iPhone 8 Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad6,4",
"identifier" : "50B7A8E7-1AC3-40DA-A51C-E6C1FB17F329",
"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" : "7.4 (18T187)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch5,3",
"identifier" : "11AB5D9F-6279-4E25-BF31-671B3BA33D80",
"architecture" : "x86_64",
"modelUTI" : "com.apple.watch-series5-1",
"modelName" : "Apple Watch Series 5 - 40mm",
"name" : "Apple Watch Series 5 - 40mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone13,4",
"identifier" : "FA2721F6-00CD-4C79-B376-DF3D46B90F21",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-12-pro-max-1",
"modelName" : "iPhone 12 Pro Max",
"name" : "iPhone 12 Pro Max"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,5",
"identifier" : "088C5C7A-0431-4D80-BDED-A4A901ECB53D",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-pro-max-1",
"modelName" : "iPhone 11 Pro Max",
"name" : "iPhone 11 Pro Max"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPod9,1",
"identifier" : "FF85EA4B-375C-43EE-86A2-1A8C0E785D74",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipod-touch-7-2",
"modelName" : "iPod touch (7th generation)",
"name" : "iPod touch (7th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone10,5",
"identifier" : "FA6A5FA6-0156-49FE-A82E-78AA8D304711",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-8-plus-2",
"modelName" : "iPhone 8 Plus",
"name" : "iPhone 8 Plus"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone13,1",
"identifier" : "6406D958-5F97-4A23-9111-86728CBA8FD5",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-12-mini-1",
"modelName" : "iPhone 12 mini",
"name" : "iPhone 12 mini"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad13,10",
"identifier" : "A2E3F951-B358-428C-83E4-D285A425492A",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-12point9-5th-1",
"modelName" : "iPad Pro (12.9-inch) (5th generation)",
"name" : "iPad Pro (12.9-inch) (5th generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "13.2.2 (17B102)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad6,4",
"identifier" : "AA99FD8D-0EBF-4E80-BC21-15B4BBE7A9F1",
"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" : "7.4 (18T187)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch6,1",
"identifier" : "7DAB2D5E-9CC5-4740-AD92-AA009BC1DAD2",
"architecture" : "x86_64",
"modelUTI" : "com.apple.watch-series6-1",
"modelName" : "Apple Watch Series 6 - 40mm",
"name" : "Apple Watch Series 6 - 40mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPad13,5",
"identifier" : "BA1425F7-473B-413F-B60C-B4120E8E719A",
"architecture" : "x86_64",
"modelUTI" : "com.apple.ipad-pro-11-3rd-1",
"modelName" : "iPad Pro (11-inch) (3rd generation)",
"name" : "iPad Pro (11-inch) (3rd generation)"
},
{
"simulator" : true,
"operatingSystemVersion" : "7.4 (18T187)",
"available" : true,
"platform" : "com.apple.platform.watchsimulator",
"modelCode" : "Watch5,4",
"identifier" : "3ECC5E69-33B4-4213-85FA-67D1C817FE81",
"architecture" : "x86_64",
"modelUTI" : "com.apple.watch-series5-1",
"modelName" : "Apple Watch Series 5 - 44mm",
"name" : "Apple Watch Series 5 - 44mm"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,1",
"identifier" : "E06F8950-D42F-48BB-96ED-F1C37AF1260D",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-1",
"modelName" : "iPhone 11",
"name" : "iPhone 11"
},
{
"simulator" : true,
"operatingSystemVersion" : "14.5 (18E182)",
"available" : true,
"platform" : "com.apple.platform.iphonesimulator",
"modelCode" : "iPhone12,5",
"identifier" : "363DDD82-B14A-4236-A1D7-5702604CFDE5",
"architecture" : "x86_64",
"modelUTI" : "com.apple.iphone-11-pro-max-1",
"modelName" : "iPhone 11 Pro Max",
"name" : "iPhone 11 Pro Max"
}
]
[ +9 ms] Error: Felix’s iPhone is not connected. Xcode will continue when Felix’s iPhone is connected. (code -13)
[ +3 ms] /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell getprop
[ +81 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[ +4 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[ +4 ms] 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.
[ +81 ms] Skipping pub get: version match.
[ +28 ms] Found plugin flutter_plugin_android_lifecycle at /Users/felix/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/
[ +10 ms] Found plugin image_picker at /Users/felix/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.3+2/
[ +3 ms] Found plugin image_picker_for_web at /Users/felix/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.2/
[ +110 ms] Found plugin flutter_plugin_android_lifecycle at /Users/felix/.pub-cache/hosted/pub.dartlang.org/flutter_plugin_android_lifecycle-2.0.2/
[ +3 ms] Found plugin image_picker at /Users/felix/.pub-cache/hosted/pub.dartlang.org/image_picker-0.8.3+2/
[ +1 ms] Found plugin image_picker_for_web at /Users/felix/.pub-cache/hosted/pub.dartlang.org/image_picker_for_web-2.1.2/
[ +23 ms] Generating /Users/felix/Desktop/tmp/my_app/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[ +72 ms] ro.hardware = ranchu
[ +14 ms] Using hardware rendering with device Android SDK built for x86. If you notice graphics artifacts, consider enabling software rendering with "--enable-software-rendering".
[ +27 ms] Initializing file store
[ +10 ms] Skipping target: gen_localizations
[ +4 ms] complete
[ +4 ms] Launching lib/main.dart on Android SDK built for x86 in debug mode...
[ +5 ms] /Users/felix/fvm/versions/stable/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/felix/fvm/versions/stable/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/felix/fvm/versions/stable/bin/cache/artifacts/engine/common/flutter_patched_sdk/
--incremental --target=flutter --debugger-module-names --experimental-emit-debug-metadata -DFLUTTER_WEB_AUTO_DETECT=true --output-dill /var/folders/xn/py5pmlm51q39j8pgx_m9f8zc0000gn/T/flutter_tools.e3ogwe/flutter_tool.ggUqZf/app.dill --packages
/Users/felix/Desktop/tmp/my_app/.dart_tool/package_config.json -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root --initialize-from-dill build/3c113a45063dc6628e68a4111abcacad.cache.dill.track.dill
--enable-experiment=alternative-invalidation-strategy
[ +13 ms] executing: /Users/felix/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/felix/Desktop/tmp/my_app/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[ +16 ms] Exit code 0 from: /Users/felix/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/felix/Desktop/tmp/my_app/build/app/outputs/flutter-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)0x1e
A: android:compileSdkVersionCodename(0x01010573)="11" (Raw: "11")
A: package="com.example.my_app" (Raw: "com.example.my_app")
A: platformBuildVersionCode=(type 0x10)0x1e
A: platformBuildVersionName=(type 0x10)0xb
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1e
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: application (line=16)
A: android:label(0x01010001)="my_app" (Raw: "my_app")
A: android:icon(0x01010002)=@0x7f080000
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
E: activity (line=21)
A: android:theme(0x01010000)=@0x7f0a0000
A: android:name(0x01010003)="com.example.my_app.MainActivity" (Raw: "com.example.my_app.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=35)
A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
A: android:resource(0x01010025)=@0x7f0a0001
E: meta-data (line=45)
A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
A: android:resource(0x01010025)=@0x7f040000
E: intent-filter (line=49)
E: action (line=50)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=52)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: meta-data (line=59)
A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
A: android:value(0x01010024)=(type 0x10)0x2
E: provider (line=63)
A: android:name(0x01010003)="io.flutter.plugins.imagepicker.ImagePickerFileProvider" (Raw: "io.flutter.plugins.imagepicker.ImagePickerFileProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.example.my_app.flutter.image_provider" (Raw: "com.example.my_app.flutter.image_provider")
A: android:grantUriPermissions(0x0101001b)=(type 0x12)0xffffffff
E: meta-data (line=68)
A: android:name(0x01010003)="android.support.FILE_PROVIDER_PATHS" (Raw: "android.support.FILE_PROVIDER_PATHS")
A: android:resource(0x01010025)=@0x7f0c0000
[ +9 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ +16 ms] <- compile package:my_app/main.dart
[ +48 ms] --------- beginning of main
08-18 14:03:36.036 E/GnssHAL_GnssInterface( 1793): gnssSvStatusCb: b: input svInfo.flags is 8
[ +23 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb version
[ +29 ms] Android Debug Bridge version 1.0.41
Version 29.0.5-5949299
Installed as /Users/felix/Library/Android/sdk/platform-tools/adb
[ +2 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb start-server
[ +54 ms] Building APK
[ +25 ms] Running Gradle task 'assembleDebug'...
[ +4 ms] Using gradle from /Users/felix/Desktop/tmp/my_app/android/gradlew.
[ +66 ms] executing: /usr/bin/plutil -convert json -o - /Applications/Android Studio.app/Contents/Info.plist
[ +13 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.jar:$APP_PACKAGE\/Contents\/lib\/util.jar:$APP_PACKAGE\/Contents\/lib\/jdom.jar:$APP_PACKAGE\/Contents\/lib\/log4j.jar:$APP_PACKAGE\/Contents\/lib\/trove4j.jar:$APP_PACKAGE\/Contents\
/lib\/jna.jar","JVMVersion":"1.8*,1.8+","MainClass":"com.intellij.idea.Main","Properties":{"idea.paths.selector":"AndroidStudio4.1","idea.executable":"studio","idea.platform.prefix":"AndroidStudio","idea.vendor.name":"Google","idea.home.path":"$APP_PACKAGE\/Contents"}},"NSDesktopFolderUsageDescriptio
n":"An application in Android Studio requests access to the user's Desktop folder.","LSArchitecturePriority":["x86_64"],"CFBundleVersion":"AI-201.8743.12.41.6858069","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"},{"CFBundleTypeName":"All
documents","CFBundleTypeExtensions":["*"],"CFBundleTypeOSTypes":["****"],"CFBundleTypeRole":"Editor","LSTypeIsPackage":false}],"NSSupportsAutomaticGraphicsSwitching":true,"CFBundlePackageType":"APPL","CFBundleIconFile":"studio.icns","NSHighResolutionCapable":true,"CFBundleShortVersionString":"4.1","N
SMicrophoneUsageDescription":"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":"Stacktrace","CFBundleURLSchemes":["idea"]}],"CFBundleIdentifier":"com.google.android.studio","LSApplicationCategoryType":"public.app-category.developer-tools","CFBundleSignature":"????"
,"LSMinimumSystemVersion":"10.8","NSDocumentsFolderUsageDescription":"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 4.1, build AI-201.8743.12.41.6858069. Copyright JetBrains s.r.o., (c) 2000-2020","NSRemovableVolumesUsageDescription":"An application in
Android Studio requests access to files on a removable volume."}
[ +9 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +112 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ ] openjdk version "1.8.0_242-release"
OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
OpenJDK 64-Bit Server VM (build 25.242-b3-6222593, mixed mode)
[ +2 ms] executing: [/Users/felix/Desktop/tmp/my_app/android/] /Users/felix/Desktop/tmp/my_app/android/gradlew -Pverbose=true -Ptarget-platform=android-x86 -Ptarget=/Users/felix/Desktop/tmp/my_app/lib/main.dart -Pdart-defines=RkxVVFRFUl9XRUJfQVVUT19ERVRFQ1Q9dHJ1ZQ== -Pdart-obfuscation=false
-Ptrack-widget-creation=true -Ptree-shake-icons=false -Pfilesystem-scheme=org-dartlang-root assembleDebug
[ +600 ms] Welcome to Gradle 6.7!
[ ] Here are the highlights of this release:
[ ] - File system watching is ready for production use
[ ] - Declare the version of Java your build requires
[ ] - Java 15 support
[ ] For more details see https://docs.gradle.org/6.7/release-notes.html
[ +493 ms] > Configure project :flutter_plugin_android_lifecycle
[ ] WARNING: The option setting 'android.enableR8=true' is deprecated.
[ ] It will be removed in version 5.0 of the Android Gradle plugin.
[ ] You will no longer be able to disable R8
[+2295 ms] > Task :app:compileFlutterBuildDebug
[ ] [ +103 ms] executing: sysctl hw.optional.arm64
[ ] [ +21 ms] Exit code 1 from: sysctl hw.optional.arm64
[ ] [ ] sysctl: unknown oid 'hw.optional.arm64'
[ ] [ +8 ms] executing: [/Users/felix/fvm/versions/stable/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] [ +17 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[ ] [ ] f4abaa0735eba4dfd8f33f73363911d63931fe03
[ ] [ ] executing: [/Users/felix/fvm/versions/stable/] git tag --points-at f4abaa0735eba4dfd8f33f73363911d63931fe03
[ ] [ +22 ms] Exit code 0 from: git tag --points-at f4abaa0735eba4dfd8f33f73363911d63931fe03
[ ] [ ] 2.2.3
[ ] [ +6 ms] executing: [/Users/felix/fvm/versions/stable/] git rev-parse --abbrev-ref --symbolic @{u}
[ ] [ +15 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] [ ] origin/stable
[ ] [ ] executing: [/Users/felix/fvm/versions/stable/] git ls-remote --get-url origin
[ ] [ +13 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] [ ] [email protected]:flutter/flutter.git
[ ] [ +70 ms] executing: [/Users/felix/fvm/versions/stable/] git rev-parse --abbrev-ref HEAD
[ ] [ +15 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] [ ] stable
[ ] [ +6 ms] executing: sw_vers -productName
[ ] [ +12 ms] Exit code 0 from: sw_vers -productName
[ ] [ ] macOS
[ ] [ ] executing: sw_vers -productVersion
[ ] [ +13 ms] Exit code 0 from: sw_vers -productVersion
[ ] [ ] 11.4
[ ] [ ] executing: sw_vers -buildVersion
[ ] [ +12 ms] Exit code 0 from: sw_vers -buildVersion
[ ] [ ] 20F71
[ ] [ +55 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[ ] [ ] 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.
[ ] [ +2 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.
[ ] [ +93 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[ ] [ +2 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.
[ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[ ] [ ] 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.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update.
[ ] [ +42 ms] Initializing file store
[ ] [ +23 ms] Skipping target: gen_localizations
[ ] [ +6 ms] kernel_snapshot: Starting due to {}
[ ] [ +12 ms] /Users/felix/fvm/versions/stable/bin/cache/dart-sdk/bin/dart --disable-dart-dev /Users/felix/fvm/versions/stable/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/felix/fvm/versions/stable/bin/cache/artifacts/engine/common/flutter_patched_sdk/
--target=flutter --no-print-incremental-dependencies -DFLUTTER_WEB_AUTO_DETECT=true -Ddart.vm.profile=false -Ddart.vm.product=false --enable-asserts --track-widget-creation --no-link-platform --packages /Users/felix/Desktop/tmp/my_app/.dart_tool/package_config.json --output-dill
/Users/felix/Desktop/tmp/my_app/.dart_tool/flutter_build/ea9eaff42a0820e7cebe647cd7951047/app.dill --depfile /Users/felix/Desktop/tmp/my_app/.dart_tool/flutter_build/ea9eaff42a0820e7cebe647cd7951047/kernel_snapshot.d package:my_app/main.dart
[+8192 ms] [+9078 ms] kernel_snapshot: Complete
[ +400 ms] [ +401 ms] debug_android_application: Starting due to {}
[ +197 ms] [ +173 ms] debug_android_application: Complete
[ +502 ms] [ +491 ms] Persisting file store
[ ] [ +6 ms] Done persisting file store
[ ] [ +6 ms] build succeeded.
[ ] [ +11 ms] "flutter assemble" took 10,371ms.
[ +100 ms] [ +117 ms] ensureAnalyticsSent: 112ms
[ ] [ +1 ms] Running shutdown hooks
[ ] [ ] Shutdown hooks complete
[ ] [ ] exiting with code 0
[ +95 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[ ] > Task :app:preBuild UP-TO-DATE
[ ] > Task :app:preDebugBuild UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:preBuild UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:preDebugBuild UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:compileDebugAidl NO-SOURCE
[ ] > Task :image_picker:preBuild UP-TO-DATE
[ ] > Task :image_picker:preDebugBuild UP-TO-DATE
[ ] > Task :image_picker:compileDebugAidl NO-SOURCE
[ ] > Task :app:compileDebugAidl NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:packageDebugRenderscript NO-SOURCE
[ ] > Task :image_picker:packageDebugRenderscript NO-SOURCE
[ ] > Task :app:compileDebugRenderscript NO-SOURCE
[ ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:writeDebugAarMetadata UP-TO-DATE
[ ] > Task :image_picker:writeDebugAarMetadata UP-TO-DATE
[ +98 ms] > Task :app:checkDebugAarMetadata UP-TO-DATE
[ ] > Task :app:cleanMergeDebugAssets
[ ] > Task :app:mergeDebugShaders UP-TO-DATE
[ ] > Task :app:compileDebugShaders NO-SOURCE
[ ] > Task :app:generateDebugAssets UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:mergeDebugShaders UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:compileDebugShaders NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:generateDebugAssets UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:packageDebugAssets UP-TO-DATE
[ ] > Task :image_picker:mergeDebugShaders UP-TO-DATE
[ ] > Task :image_picker:compileDebugShaders NO-SOURCE
[ ] > Task :image_picker:generateDebugAssets UP-TO-DATE
[ ] > Task :image_picker:packageDebugAssets UP-TO-DATE
[ ] > Task :app:mergeDebugAssets
[ +301 ms] > Task :app:copyFlutterAssetsDebug
[ ] > Task :app:generateDebugResValues UP-TO-DATE
[ ] > Task :app:generateDebugResources UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:compileDebugRenderscript NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:generateDebugResValues UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:generateDebugResources UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:packageDebugResources UP-TO-DATE
[ ] > Task :image_picker:compileDebugRenderscript NO-SOURCE
[ ] > Task :image_picker:generateDebugResValues UP-TO-DATE
[ ] > Task :image_picker:generateDebugResources UP-TO-DATE
[ ] > Task :image_picker:packageDebugResources UP-TO-DATE
[ ] > Task :app:mergeDebugResources UP-TO-DATE
[ ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[ ] > Task :app:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:processDebugManifest UP-TO-DATE
[ ] > Task :image_picker:extractDeepLinksDebug UP-TO-DATE
[ ] > Task :image_picker:processDebugManifest UP-TO-DATE
[ ] > Task :app:processDebugMainManifest UP-TO-DATE
[ ] > Task :app:processDebugManifest UP-TO-DATE
[ ] > Task :app:processDebugManifestForPackage UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:compileDebugLibraryResources UP-TO-DATE
[ +93 ms] > Task :flutter_plugin_android_lifecycle:parseDebugLocalResources UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:generateDebugRFile UP-TO-DATE
[ ] > Task :image_picker:compileDebugLibraryResources UP-TO-DATE
[ ] > Task :image_picker:parseDebugLocalResources UP-TO-DATE
[ ] > Task :image_picker:generateDebugRFile UP-TO-DATE
[ ] > Task :app:processDebugResources UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:javaPreCompileDebug UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :image_picker:generateDebugBuildConfig UP-TO-DATE
[ ] > Task :image_picker:javaPreCompileDebug UP-TO-DATE
[ +99 ms] > Task :image_picker:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :image_picker:bundleLibCompileToJarDebug UP-TO-DATE
[ ] > Task :app:compileDebugKotlin UP-TO-DATE
[ ] > Task :app:javaPreCompileDebug UP-TO-DATE
[ ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[ ] > Task :app:compileDebugSources UP-TO-DATE
[ ] > Task :app:mergeDebugNativeDebugMetadata NO-SOURCE
[ ] > Task :app:compressDebugAssets UP-TO-DATE
[ ] > Task :app:processDebugJavaRes NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:processDebugJavaRes NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:bundleLibResDebug NO-SOURCE
[ ] > Task :image_picker:processDebugJavaRes NO-SOURCE
[ ] > Task :image_picker:bundleLibResDebug NO-SOURCE
[ ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:bundleLibRuntimeToJarDebug UP-TO-DATE
[ ] > Task :image_picker:bundleLibRuntimeToJarDebug UP-TO-DATE
[ +96 ms] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[ ] > Task :app:dexBuilderDebug UP-TO-DATE
[ ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[ ] > Task :app:mergeExtDexDebug UP-TO-DATE
[ ] > Task :app:mergeDexDebug UP-TO-DATE
[ ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :flutter_plugin_android_lifecycle:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :image_picker:mergeDebugJniLibFolders UP-TO-DATE
[ ] > Task :image_picker:mergeDebugNativeLibs NO-SOURCE
[ ] > Task :image_picker:stripDebugDebugSymbols NO-SOURCE
[ ] > Task :image_picker:copyDebugJniLibsProjectOnly UP-TO-DATE
[ ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[ ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[ ] > Task :app:validateSigningDebug UP-TO-DATE
[ ] > Task :app:packageDebug UP-TO-DATE
[ +199 ms] > Task :app:assembleDebug
[ ] > Task :flutter_plugin_android_lifecycle:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:extractDebugAnnotations UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:syncDebugLibJars UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:bundleDebugAar UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:compileDebugSources UP-TO-DATE
[ ] > Task :flutter_plugin_android_lifecycle:assembleDebug UP-TO-DATE
[ ] > Task :image_picker:copyDebugJniLibsProjectAndLocalJars UP-TO-DATE
[ ] > Task :image_picker:extractDebugAnnotations UP-TO-DATE
[ ] > Task :image_picker:mergeDebugGeneratedProguardFiles UP-TO-DATE
[ ] > Task :image_picker:mergeDebugConsumerProguardFiles UP-TO-DATE
[ ] > Task :image_picker:prepareLintJarForPublish UP-TO-DATE
[ ] > Task :image_picker:mergeDebugJavaResource UP-TO-DATE
[ ] > Task :image_picker:syncDebugLibJars UP-TO-DATE
[ ] > Task :image_picker:bundleDebugAar UP-TO-DATE
[ +58 ms] > Task :image_picker:mergeDebugResources UP-TO-DATE
[ ] > Task :image_picker:compileDebugSources UP-TO-DATE
[ ] > Task :image_picker:assembleDebug UP-TO-DATE
[ ] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
[ ] Use '--warning-mode all' to show the individual deprecation warnings.
[ ] See https://docs.gradle.org/6.7/userguide/command_line_interface.html#sec:command_line_warnings
[ ] BUILD SUCCESSFUL in 13s
[ ] 83 actionable tasks: 5 executed, 78 up-to-date
[ +369 ms] Running Gradle task 'assembleDebug'... (completed in 14.4s)
[ +34 ms] calculateSha: LocalDirectory: '/Users/felix/Desktop/tmp/my_app/build/app/outputs/flutter-apk'/app.apk
[ +498 ms] ✓ Built build/app/outputs/flutter-apk/app-debug.apk.
[ +2 ms] executing: /Users/felix/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/felix/Desktop/tmp/my_app/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[ +17 ms] Exit code 0 from: /Users/felix/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/felix/Desktop/tmp/my_app/build/app/outputs/flutter-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)0x1e
A: android:compileSdkVersionCodename(0x01010573)="11" (Raw: "11")
A: package="com.example.my_app" (Raw: "com.example.my_app")
A: platformBuildVersionCode=(type 0x10)0x1e
A: platformBuildVersionName=(type 0x10)0xb
E: uses-sdk (line=7)
A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1e
E: uses-permission (line=14)
A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
E: application (line=16)
A: android:label(0x01010001)="my_app" (Raw: "my_app")
A: android:icon(0x01010002)=@0x7f080000
A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
E: activity (line=21)
A: android:theme(0x01010000)=@0x7f0a0000
A: android:name(0x01010003)="com.example.my_app.MainActivity" (Raw: "com.example.my_app.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=35)
A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
A: android:resource(0x01010025)=@0x7f0a0001
E: meta-data (line=45)
A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
A: android:resource(0x01010025)=@0x7f040000
E: intent-filter (line=49)
E: action (line=50)
A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
E: category (line=52)
A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
E: meta-data (line=59)
A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
A: android:value(0x01010024)=(type 0x10)0x2
E: provider (line=63)
A: android:name(0x01010003)="io.flutter.plugins.imagepicker.ImagePickerFileProvider" (Raw: "io.flutter.plugins.imagepicker.ImagePickerFileProvider")
A: android:exported(0x01010010)=(type 0x12)0x0
A: android:authorities(0x01010018)="com.example.my_app.flutter.image_provider" (Raw: "com.example.my_app.flutter.image_provider")
A: android:grantUriPermissions(0x0101001b)=(type 0x12)0xffffffff
E: meta-data (line=68)
A: android:name(0x01010003)="android.support.FILE_PROVIDER_PATHS" (Raw: "android.support.FILE_PROVIDER_PATHS")
A: android:resource(0x01010025)=@0x7f0c0000
[ +2 ms] Stopping app 'app.apk' on Android SDK built for x86.
[ ] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell am force-stop com.example.my_app
[ +55 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell pm list packages com.example.my_app
[ +38 ms] package:com.example.my_app
[ +2 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell cat /data/local/tmp/sky.com.example.my_app.sha1
[ +28 ms] 283ec62b83c5905745a8bd1635eba41949182c2d
[ +1 ms] Latest build already installed.
[ ] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 shell -x logcat -v time -t 1
[ +25 ms] --------- beginning of main
08-18 14:03:51.878 D/CarrierSvcBindHelper( 2267): No carrier app for: 0
[ +13 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 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.example.my_app/com.example.my_app.MainActivity
[ +45 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.my_app/.MainActivity (has extras) }
[ ] Waiting for observatory port to be available...
[ +643 ms] Observatory URL on device: http://127.0.0.1:33003/3p_6qw7DfhU=/
[ +1 ms] executing: /Users/felix/Library/Android/sdk/platform-tools/adb -s emulator-5554 forward tcp:0 tcp:33003
[ +10 ms] 55716
[ ] Forwarded host port 55716 to device port 33003 for Observatory
[ +7 ms] Caching compiled dill
[ +31 ms] Connecting to service protocol: http://127.0.0.1:55716/3p_6qw7DfhU=/
[ +352 ms] Launching a Dart Developer Service (DDS) instance at http://127.0.0.1:0, connecting to VM service at http://127.0.0.1:55716/3p_6qw7DfhU=/.
[ +473 ms] DDS is listening at http://127.0.0.1:55721/vwxlmeJSLzk=/.
[ +60 ms] Successfully connected to service protocol: http://127.0.0.1:55716/3p_6qw7DfhU=/
[ +29 ms] DevFS: Creating new filesystem on the device (null)
[ +33 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.my_app/code_cache/my_appHIVBOE/my_app/)
[ +1 ms] Updating assets
[ +75 ms] Syncing files to device Android SDK built for x86...
[ +1 ms] <- reset
[ ] Compiling dart to kernel with 0 updated files
[ +2 ms] <- recompile package:my_app/main.dart 1f28bd38-6e72-4d83-9ca8-c5134e6ab47e
[ ] <- 1f28bd38-6e72-4d83-9ca8-c5134e6ab47e
[ +60 ms] Updating files.
[ ] DevFS: Sync finished
[ +1 ms] Syncing files to device Android SDK built for x86... (completed in 65ms)
[ +1 ms] Synced 0.0MB.
[ +1 ms] <- accept
[ +16 ms] Connected to _flutterView/0xc069b010.
[ +2 ms] Flutter run key commands.
[ +1 ms] r Hot reload. 🔥🔥🔥
[ ] 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).
[ ] 💪 Running with sound null safety 💪
[ ] An Observatory debugger and profiler on Android SDK built for x86 is available at: http://127.0.0.1:55721/vwxlmeJSLzk=/
[ +15 ms] D/EGL_emulation( 3615): eglMakeCurrent: 0xdf77bd20: ver 3 0 (tinfo 0xd76c6280)
[ +4 ms] D/eglCodecCommon( 3615): setVertexArrayObject: set vao to 0 (0) 1 0
[ +24 ms] Activating Dart DevTools...
[+2162 ms] Activating Dart DevTools... (completed in 2,162ms)
[ +682 ms] The Flutter DevTools debugger and profiler on Android SDK built for x86 is available at: http://127.0.0.1:9103?uri=http%3A%2F%2F127.0.0.1%3A55721%2FvwxlmeJSLzk%3D%2F
[+43409 ms] D/EGL_emulation( 3615): eglMakeCurrent: 0xdf76ed00: ver 3 0 (tinfo 0xd4273060)
[+1115 ms] D/skia ( 3615): --- Failed to create image decoder with message 'invalid input'
[ +41 ms] D/EGL_emulation( 3615): eglMakeCurrent: 0xdf77bd20: ver 3 0 (tinfo 0xd76c6280)
[ +7 ms] D/EGL_emulation( 3615): eglMakeCurrent: 0xdf76ed00: ver 3 0 (tinfo 0xd4273060)
[ +33 ms] D/EGL_emulation( 3615): eglMakeCurrent: 0xdf77bd20: ver 3 0 (tinfo 0xd76c6280)
Analyzing my_app...
No issues found! (ran in 2.2s)
[✓] Flutter (Channel stable, 2.2.3, on macOS 11.4 20F71 darwin-x64, locale en-US)
• Flutter version 2.2.3 at /Users/felix/fvm/versions/stable
• Framework revision f4abaa0735 (7 weeks ago), 2021-07-01 12:46:11 -0700
• Engine revision 241c87ad80
• Dart version 2.13.4
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
• Android SDK at /Users/felix/Library/Android/sdk
• Platform android-30, build-tools 29.0.2
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
• All Android licenses accepted.
[✓] Xcode - develop for iOS and macOS
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 12.5, Build version 12E262
• CocoaPods version 1.10.1
[✓] Chrome - develop for the web
• Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
[✓] Android Studio (version 4.1)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
• Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b3-6222593)
[✓] IntelliJ IDEA Community Edition (version 2021.2)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/9212-flutter
• Dart plugin can be installed from:
🔨 https://plugins.jetbrains.com/plugin/6351-dart
[✓] VS Code (version 1.57.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.23.0
[✓] Connected device (3 available)
• Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator)
• macOS (desktop) • macos • darwin-x64 • macOS 11.4 20F71 darwin-x64
• Chrome (web) • chrome • web-javascript • Google Chrome 92.0.4515.159
! Error: Felix’s iPhone is not connected. Xcode will continue when Felix’s iPhone is connected. (code -13)
• No issues found!
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listfound in release: 2.2Found to occur in 2.2Found to occur in 2.2found in release: 2.5Found to occur in 2.5Found to occur in 2.5has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onp: image_pickerThe Image Picker plugin.The Image Picker plugin.packageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-androidAndroid applications specificallyAndroid applications specifically