Qt Android 部署失败

Qt Android Deployment Failing

我已尝试根据列出的文档 here

修改 Android 模板文件

在我的 .pro 文件中有以下内容:

ANDROID_PACKAGE_SOURCE_DIR = Android_Files

我的目录结构是这样的:

QtProject
|-- Android_Files
|   |-- AndroidManifest.xml
|
|-- Resources
|-- Source
|-- Application.pro
|-- Application.pro.user

但是当我的 Qt Creator 部署应用程序时,出现以下错误:

Cannot find android sources in Android_Files

我是不是漏掉了什么?

Android包目录不对

使用$PWD 引用当前项目目录

ANDROID_PACKAGE_SOURCE_DIR = $$PWD/Android_Folder_Name

你的情况:$$PWD/Android_Files

关于 PWD 的更多信息:

The PWD variable specifies the full path leading to the directory containing the current file being parsed. This can be useful to refer to files within the source tree when writing project files to support shadow builds.