summaryrefslogtreecommitdiffstats
path: root/src/android/templates/build.gradle
diff options
context:
space:
mode:
authorVolker Krause <vkrause@kde.org>2019-01-05 12:50:18 +0100
committerVolker Krause <volker.krause@kdab.com>2019-01-05 15:52:56 +0000
commit2f4eea5b9cce7b438eeb9016c52a67937d536793 (patch)
treef51d80814c83279c9f49a2e7aed380a1d7e8bcc7 /src/android/templates/build.gradle
parent012f7bb622add41ffc79c0d1eb62043c840be7db (diff)
Also integrate Android AAR libraries
This works in the same way as JARs are currently provided by dependencies, and becomes necessary when needing e.g. the Android support/compat libs for implementing the Java side of a library. While this is not relevant (yet?) for Qt itself, we hit this with KDE's notification framework. Change-Id: Ia87d1a048a493f7bc311abf5761f33d1943cfbe9 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
Diffstat (limited to 'src/android/templates/build.gradle')
-rw-r--r--src/android/templates/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/templates/build.gradle b/src/android/templates/build.gradle
index fcd8ae345d..989d0792cf 100644
--- a/src/android/templates/build.gradle
+++ b/src/android/templates/build.gradle
@@ -17,7 +17,7 @@ repositories {
apply plugin: 'com.android.application'
dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
+ implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
}
android {