Another User
Another User

Reputation: 128

Failure [INSTALL_FAILED_CPU_ABI_INCOMPATIBLE] while building in Unity

I'm trying to build an android app with Unity and get this error in the console:

Failure [INSTALL_FAILED_CPU_ABI_INCOMPATIBLE]

What does it mean and how do i fix it? I followed the installation guide of the SDK and Unity.

Upvotes: 0

Views: 402

Answers (1)

Greg Ennis
Greg Ennis

Reputation: 15379

It means the CPU architecture you have built does not match the CPU architecture you are trying to install the application on. For example, you built the app for ARM CPU but you are trying to run it on a x86-based host (i.e., genymotion emulator).

Upvotes: 1

Related Questions