javafxports / javafxmobile-plugin

A gradle plugin for building mobile applications in java.
BSD 3-Clause "New" or "Revised" License
42 stars 19 forks source link

App does not compile on intel processor emulator #79

Open krawler opened 5 years ago

krawler commented 5 years ago

Good Morning, I tried to run the generated apk on the intel x86 emulator, however I ran into error whose the main message is INSTALL_FAILED_NO_MATCHING_ABIS : Failed to extract native libraries, res=-113, I did not found any information about the issue and when I tried to place code on build.gradle to inform gradle to compile for intel x86 emulator with the following code:

splits { abi { enable true reset() include 'x86', 'armeabi-v7a' universalApk true } }

It does not recognize the comand: Could not find the method splits for arguments... I think the plugin javafxmobile should has another comand to compile to target x86 intel that is quite faster than ARM and able to run any apk than ARM processor(very slow). Does anyone have some information? This require a pull request?

SergeVil commented 5 years ago

Did you find the solution for the problem?