I am currently working on a chat in android studio using the alljoyn framework. I have followed the steps provided here How to setup alljoyn sdk in android? to setup alljoyn in my project, but when i try to test my project I get the following error: INSTALL_FAILED_CPU_ABI_INCOMPATIBLE. I need to point out that I did not get this error before setting up alljoyn. After I added the framework I received this error.
Asked
Active
Viewed 46 times
2 Answers
0
That bug means you don't have the native libraries for the type of processor you're using. If they're available, make sure to add the x86 and arm libraries.

f1sh
- 11,489
- 3
- 25
- 51

Gabe Sechan
- 90,003
- 9
- 87
- 127
0
ABI stands for Application Binary Interface. This basically means the library uses native codes. This is architecture specific. So if the library is for arm, it won't work on x86. If its for x86 it won't work for arm. You can look for the these libraries and add them.

S Praveen Kumar
- 341
- 1
- 13