Raga Subekti
Raga Subekti

Reputation: 73

Build Flutter Application for x86 and x86_64

I was trying to build flutter application, it was successfull, but i can't install it on ASUS T00G and x86 Android Emulator. And after finding out the release is only available for arm & arm64. Is there any possible way to do a Release Build to both x86 and arm?

Upvotes: 4

Views: 7201

Answers (2)

Rebecca Hsieh
Rebecca Hsieh

Reputation: 43

The linked issue in above answer has been closed on 23 Oct

jonahwilliams commented on 23 Oct
On master, Flutter now supports the x86_64 (64 bit) Android ABI. The engine also has support for building in x86 (32 bit) by following instructions at https://github.com/flutter/flutter/wiki/JIT-Release-Modes

https://github.com/flutter/flutter/issues/9253#issuecomment-545082953

You can find an android-x86-jit-release folder in bin/cache/artifacts/engine enter image description here

Upvotes: 1

Günter Zöchbauer
Günter Zöchbauer

Reputation: 657376

That's currently not supported.

There is an open issue that you can upvote https://github.com/flutter/flutter/issues/9253

Upvotes: 1

Related Questions