Mikhail Novoseltsev

Results 15 comments of Mikhail Novoseltsev

I believe this behavior is caused by the following code:: https://github.com/flutter/flutter/blob/35b034929457e978206183ecea3b519f3d86acd4/packages/flutter_tools/lib/src/macos/application_package.dart#L174-L178 This code explicitly waits for the configuration to conform to a specific pattern ($buildMode-$flavor). Otherwise, it returns just $buildMode....

In order to work and not crash – yes, I think it should be. But more importantly, I believe build configurations in Xcode itself (on screenshot) have to be named...

@danagbemava-nc hi and thanks for your attention! Can you please elaborate, in which way this duplicates flutter/flutter#121925 ? From what I can see, in flutter/flutter#121925 bug is related to Android...

I think modern Android Studio changed path where plugins contained an `Application Support`, in this code: https://github.com/flutter/flutter/blob/c4c9f47c479da3786bb5d42e127597d6508fab50/packages/flutter_tools/lib/src/android/android_studio.dart#L75-L84 In this code,`presetPluginsPath` will be resolved to `/Users/user/Library/Application Support/Google/AndroidStudio2024.1` in my environment, but...

Wow even I forgot about this issue :) If you ask me, it's indeed a flutter_tool issue thought. And also there is https://github.com/flutter/flutter/issues/163214 connected to this, and there's even PR...

I guess infra is finally restored and checks passed now! I added a comment as per https://github.com/flutter/flutter/pull/168293#pullrequestreview-2914136196 and if nothing else, I would ask someone to add autosubmit label here.

@cbracken I wonder if fs path will be changed for arm64 binaries, i.e. `android-arm-profile/darwin-arm64/gen_snapshot` instead of `android-arm-profile/darwin-x64/gen_snapshot` for Apple Silicon hosts ?

Figured out that adding `abiFilters` hardcoded in the template (or in `build.gradle.kts` itself) will not work if `--split-per-abi` is used alongside `--target-platform`. It will cause an issue: if the ABIs...

After further investigation, this is what I came up with. 1. There are no mentions of `abifilters` in any of `AndroidManifest.xml` and related files of the assembled Android application. This...

@Dooks123 Sure! The thing is `aab` bundles are essentially archives, so you can just change `.aab` to `.zip`, for example, unpack it and see all internals.