创建lib工程选择kits : armeabi-v7a
报下面的错,无法进行编译
Internal Error: Could not find .pro file.
Error while building/deploying project untitled11 (kit: Android for armeabi (GCC 4.8, Qt 5.4.0))
When executing step “Build Android APK”
解决办法:
修改.pro文件
TEMPLATE = lib # for the Desktop (Lin/Win/Mac) this is a "lib"
android {
TEMPLATE = app # for Android this is an "app"
}