Reputation: 563
I'm trying to deploy my Qt5 application on Android (Samsung S4). It compiles fine, but while deploying it stops on:
Starting debugger "QmlCppEngine" for ABI "arm-linux-android-elf-32bit
In Application Output I got:
Unable to start 'org.qtproject.example.testapp'. Debugging has failed
What can be the reason?
Upvotes: 1
Views: 937
Reputation: 79447
In my case, the error turned out to be because the Android emulator was running out of space, so make sure to check if you have enough space on the emulator.
After uninstalling some apps to free up space the error disappeared.
Upvotes: 1
Reputation: 563
While viewing logcat report I found smth like:
"Failed dlopen(): somelib.so cannot find libQt5PrintSupport.so"
By temporary excluding somlib.so from project I was able to run application.
Upvotes: 1