Thibault Deckers

Results 432 comments of Thibault Deckers
trafficstars

On Android, as far as I know, the Media Store does not report whether images are panoramas. The only way to identify panoramas is to check yourself the metadata for...

I get this issue when running tests (but not in my app). Here's a minimal test (`Sample 1`): ```dart import 'package:flutter_test/flutter_test.dart'; import 'package:shared_preferences/shared_preferences.dart'; void main() { setUpAll(() async { await...

Here is a possible solution (for tests) to mock the store and prevent using channels: ```dart SharedPreferencesStorePlatform.instance = InMemorySharedPreferencesStore.empty(); ```

Logs from `flutter run -v --enable-software-rendering` on an API 19 emulator run with Android Studio Dolphin 2021.3.1: [flutter_115100_logs.txt](https://github.com/flutter/flutter/files/9989481/flutter_115100_logs.txt) I don't have a real API 19 device at hand, and I...

Your logs only show the flutter tooling failing to connect to the app. And it cannot connect because the app failed to launch from the very beginning, when the activity...

@reidbaker maybe we're not talking about the same bug, but my initial report was for a crash specifically depending on 3 conditions: - API 19 - minified - Android Gradle...

The issue i originally reported was happening on a real device.

Maybe i wasn't clear in my original issue description. It was crashing in release mode. And i found out that it was because of the code shrinking (which is by...

The code snippet (explicitly enabling minification) is only necessary for debug mode, yes. Because testing release mode is difficult without a physical device, i provided the snippet so that people...

Just to confirm what was pointed [above](https://github.com/flutter/flutter/issues/115100#issuecomment-1407495508), upgrading to AGP 7.4 fixes this for me.