Jenn Magder

Results 592 comments of Jenn Magder
trafficstars

go/flutter-deprecating-old-platforms would be the RFC template for dropping 10.13, which I'm guessing is what @cbracken is working on. Dropping macOS 10.11-10.12 had no such process, I believe decision was entirely...

Confirmed g3 apps are already on 10.13. Will check on a manual framework->plugin roll https://github.com/flutter/plugins/pull/6108 to make sure there are no exposed deprecation warnings similar to https://github.com/flutter/flutter/issues/103912 [update: no deprecation...

I spotted this in a trace: ![trace](https://user-images.githubusercontent.com/682784/183139275-fac9fcfb-c6d9-4779-950b-4e2270a21edf.png) The `+sharedServices` doc says: > It also may be useful to take this object in advance of the first map creation, to reduce...

I was looking at GM code, `+sharedServices` must be called on the main thread, but internally preps the service on a background thread. It should be retained to speed up...

https://github.com/flutter/plugins/pull/6211 will cache `+[GMSServices sharedServices]` the first time a map is created after app launch so the initialization work can be shared over multiple maps (includes when the map is...

@petrnymsa I just tried this in https://github.com/flutter/flutter/tree/master/dev/integration_tests/flavors: Made a target for each flavor: ``` $ cp lib/main.dart lib/main_free.dart $ cp lib/main.dart lib/main_paid.dart ``` Then when I run `$ flutter build...

> Just `build ipa` ignores --target parameter I didn't see that in my tests, `flutter build ipa -t lib/main_paid.dart --flavor paid` worked correctly without setting `FLUTTER_TARGET` explicitly. Can you revert...

Your log does show `-dTargetFile=lib/main_dev.dart`. But when I run the same thing on 2.10.4 I see the target that's passed with the option. Can you run that again, and attach...

I don't know why symbolication failed, symbols are at https://storage.googleapis.com/flutter_infra_release/flutter/e85ea0e79c6d894c120cda4ee8ee10fe6745e187/ios-release/Flutter.dSYM.zip ``` $ atos -arch arm64 -o Flutter.dSYM/Contents/Resources/DWARF/Flutter -l 0x102650000 0000000102662d54 -[FlutterEngine sendOnChannel:message:binaryReply:] (in Flutter) + 776 ``` And the missing...

@dishankjindal1 there is probably a similar memory management issue in that plugin. You should file an issue there https://github.com/ekasetiawans/flutter_background_service/issues