gpt4 book ai didi

android - Qt+Android : Location of java files common to different projects

转载 作者:行者123 更新时间:2023-11-30 02:40:00 25 4
gpt4 key购买 nike

在 Qt for Android 中,您的项目中包含 java 文件。该位置使用项目文件中的变量 ANDROID_PACKAGE_SOURCE_DIR 配置。

该位置还包含特定于项目的其他文件(资源等)。

但是如果这些 java 文件对于不同的项目是通用的,你应该有单独的副本,每个项目一个在各自的 ANDROID_PACKAGE_SOURCE_DIR

我的问题是,是否有人知道一种独立于项目位置指定 java 文件目录的方法。

最佳答案

我对在 Qt 中开发 Android 应用程序还很陌生,但最近我开始了这段旅程并遇到了与您完全相同的问题;我写了一些我想在几个不同的应用程序之间共享的通用 C++/Java 代码。 C++ 代码很简单(共享库),但是正如您所说的 Java 代码,我不想在每个项目目录中都有相同 Java 代码的副本。

这花了点时间,但我想出了一个很容易做到的方法。

在 C++ 代码被编译/链接后编译 Qt Android 项目时,会运行一个编译 Java 代码的 ANT 脚本(因此您只需要将 Java 源文件而不是已编译的 JAR 文件放在 src 文件夹中)。

ANT 脚本是 Android SDK 的一部分,默认情况下在 src 文件夹中查找并编译在那里找到的任何 Java 文件。因此,您真正需要确保的是,在运行 ANT 脚本之前,您要用作应用程序一部分的所有 Java 文件都位于该文件夹中。

ANDROID_PACKAGE_SOURCE_DIR 变量告诉 qMake 在哪里可以找到它需要复制到 android-build 文件夹的文件(包括任何项目特定的 Java 代码),但我们想要的是一个自定义目标,它在执行 ANT 脚本之前运行一段时间手动将我们常用的 Java 文件复制到 src 文件夹中,以便它们也可以编译到 App 中。

为了在我的 *.pro 文件中执行此操作,我添加了以下内容:

# This line makes sure my custom manifest file and project specific java code is copied to the android-build folder
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android

# This is a custom variable which holds the path to my common Java code
# I use the $$system_path() qMake function to make sure that my directory separators are correct for the platform as you need to use the correct separator in the Make file (i.e. \ for Windows and / for Linux)
commonAndroidFilesPath = $$system_path( $$PWD/../CommonLib/android-sources/src )

# This is a custom variable which holds the path to the src folder in the output directory. That is where they need to go for the ANT script to compile them.
androidBuildOutputDir = $$system_path( $$OUT_PWD/../android-build/src )

# Here is the magic, this is the actual copy command I want to run.
# Make has a platform agnostic copy command macro you can use which substitutes the correct copy command for the platform you are on: $(COPY_DIR)
copyCommonJavaFiles.commands = $(COPY_DIR) $${commonAndroidFilesPath} $${androidBuildOutputDir}

# I tack it on to the first target which exists by default just because I know this will happen before the ANT script gets run.
first.depends = $(first) copyCommonJavaFiles
export(first.depends)
export(copyCommonJavaFiles.commands)
QMAKE_EXTRA_TARGETS += first copyCommonJavaFiles

当您运行 qMake 时,生成的 Make 文件将包含以下内容:

first: $(first) copyCommonJavaFiles

copyCommonJavaFiles:
$(COPY_DIR) C:\Users\bvanderlaan\Documents\GitHub\MyProject\MyProjectApp\..\CommonLib\android-sources\src C:\Users\bvanderlaan\Documents\GitHub\build-MyProject-Android_for_armeabi_v7a_GCC_4_9_Qt_5_4_1-Debug\MyProjectApp\..\android-build\src

所以现在当我构建我的公共(public) C++ 时,我的公共(public) C++ 被链接为一个共享库,我的公共(public) Java 代码被复制到 src 目录,然后 ANT 脚本编译所有的 Java 代码,并被复制到我的应用程序与任何项目特定的 Java 代码我可能有。这样就无需在我的源代码树的多个位置保留 Java 文件的副本,也无需在编译之前使用外部构建脚本/工具来设置我的工作空间。

我希望这能回答您的问题并且对您有用。

直到下一次富有想象力地思考和创造性地设计

关于android - Qt+Android : Location of java files common to different projects,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25929467/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com