Jannie Theunissen
Jannie Theunissen
@colorbitch I assumed the example app already had the integration configured in the committed `Info.plist` and `project.pbxproj` files. Looks like the docs are a bit outdated so also I tried...
@colorbitch I have cloned the example app in this repository. It is already fully configured by the package authors: https://github.com/fluttercommunity/flutter_downloader/blob/master/example/ios/Runner/AppDelegate.m
I'm not seeing this. iPhone 5s, iOS 12.2, Plugin 0.3.3
My Flutter project is only upgraded to Android embedding v2 when I change to the following in `AndroidManifest.xml`: ``` ``` which caused me to run into [this issue][1] with 15K...
Very interesting. Changing that name to the Flutter default caused a major regression in our app and I successfully resolved the issue by reverting back to "io.flutter.app.FlutterApplication" based on your...
For example Laravel has a `present` rule for this scenario that is very useful: https://laravel.com/docs/8.x/validation#rule-present
@enocom would you perhaps have time to look at [my CI pipeline](https://stackoverflow.com/questions/74569790/debugging-cloud-build-database-connection) while your example is still pending? Hopefully it might help provide a context for a typical use case...
Thank you for your quick response @christocracy . We will refactor asap and check.
Thanks for the pointer! On node v21.6.0 and AdonisJs I could get it going by using the ipv6 protocol: ``` GET http://[::1]:3333/ HTTP/1.1 ```
Modern versions of node tries the ipv6 protocol first, so on node v21.6.0 and AdonisJs I could get it going by using the ipv6 protocol instead of `http://localhost:3333` I used:...