我正在尝试将其中一个 QT 示例(即 calqlatr 或 samegame)部署到我的 Android 手机(4.0.4)。我正在使用 Windows 7 32Bit 和 QtCreator 3.0.0Beta。我成功添加了设备和工具包以将其部署到 QtCreator。
该示例的构建也成功,但在部署过程中出现以下错误:
Invalid json file: C:/Qt/Qt5.2.0/5.2.0-beta1/mingw48_32/examples/quick/demos/build-samegame-Android_für_armeabi_GCC_4_8_Qt_5_2_0-Debug/android-libsamegame.so-deployment-settings.json
08:18:32: Der Prozess "C:\Qt\Qt5.2.0\5.2.0-beta1\android_armv5\bin\androiddeployqt.exe" wurde mit dem Rückgabewert 2 beendet.
Fehler beim Erstellen/Deployment des Projekts samegame(Kit: Android für armeabi (GCC 4.8, Qt 5.2.0))
Bei der Ausführung von Schritt 'Deploy to Android device'
我检查了命名的 json 文件,它对我来说看起来不错:
{
"description": "This file is generated by qmake to be read by androiddeployqt and should not be modified by hand.",
"qt": "C:\\Qt\\Qt5.2.0\\5.2.0-beta1\\android_armv5",
"sdk": "C:/adt-bundle-windows-x86/sdk",
"ndk": "C:\\Users\\mcc-lan\\android-ndk-r9b",
"toolchain-prefix": "arm-linux-androideabi",
"tool-prefix": "arm-linux-androideabi",
"toolchain-version": "4.8",
"ndk-host": "windows",
"target-architecture": "armeabi",
"application-binary": "C:/Qt/Qt5.2.0/5.2.0-beta1/mingw48_32/examples/quick/demos/build-samegame-Android_für_armeabi_GCC_4_8_Qt_5_2_0-Debug/libsamegame.so"
}
由于没有进一步的错误描述,我不知道下一步该去哪里。我对 Android NDK 也有一点不确定性,我下载并使用了: android-ndk-r9b-windows-x86.zip 是正确的还是我需要 android-ndk-r9b-windows-x86-legacy-toolchains.zip ?
感谢您的任何建议。