Search code examples
flutterdebuggingandroid-sdk-2.3

Android SDK built for x86 does not support profile mode?


it throws this error when I run --profile

H:\MyApp>flutter run --profile
Profile mode is not supported by Android SDK built for x86.

but

  H:\MyApp>flutter run --debug

works perfectly.

any fixes ?


Solution

  • I had the same problem for --release mode but got solved with this:

    If you want to run a release mode APK on an emulator, it needs to be one of Flutter's supported ABIs: armeabi, armeabi-v7a, or x86_64.

    as seen here.

    As also refered by Flutter docs:

    What are the supported target architectures?

    When building your application in release mode, Flutter apps can be compiled for armeabi-v7a (ARM 32-bit), arm64-v8a (ARM 64-bit), and x86-64 (x86 64-bit). Flutter does not currently support building for x86 Android.