This guide describes how to include a Java-based third-party library in your application package. There are many Java libraries which provide APIs that may be useful to your application. One example is the
Google Play Services
add-on provided in the Android SDK. We will use this library as an example in this guide, but the same approach may be taken to include other libraries, provided that they have been made to be included as library projects in an Android application.
This guide assumes that the androiddeployqt tool is used for constructing the deployment package. When using Qt Creator for building and deploying, androiddeployqt is used behind the scenes, so this also applies to development with Qt Creator. Explaining how to access the Java APIs after they have been included in the application is not in the scope of this guide.
The very first thing we need to do is to copy the actual library project into the source of our project. We want the contents of the library project to be copied without modifications into the packaging directory, so we need to place it into the
Android Package Source Directory
. This can be any directory which is pointed to by the
qmake
variable
ANDROID_PACKAGE_SOURCE_DIR
.
If you are using Qt Creator, you can quickly set up the directory structure by clicking on the
Create AndroidManifest.xml
button in the
部署
settings of your project. This will create an
Android Package Source Directory
and place the
AndroidManifest.xml
file inside it. Copy the library project directory into this directory.
For example, once it has been installed via the
Android SDK Maintenance
application, the
Google Play Services
library project is located under the path
$ANDROID_SDK_ROOT/extras/google/google_play_services/libproject/google-play-services_lib
。若
Android Package Source Directory
of our project is
$PROJECT_ROOT/android
, then we can copy the
google-play-services_lib
directory in there, creating
$PROJECT_ROOT/android/google-play-services_lib
.
Once the library code has been copied into the project, we need to tell the Android build system about it. This is done in the
project.properties
file. Create a file called
project.properties
在
Android Package Source Directory
and add a line to it which assigns the relative path of the library project to the property
android.library.reference.1
. If you want to include multiple library projects, increment the counter at the end of the property name for each.
In our example, we would create
$PROJECT_ROOT/android/project.properties
and add the following contents:
android.library.reference.1=google-play-services_lib/
And that's it: Provided that the path referenced in the
project.properties
file is located under the
Android Package Source Directory
, the deployment tool will copy it into the packaging directory and perform the necessary steps to include it in your
APK
. You can now add Java code to your application which accesses the APIs provided by the library project.