summaryrefslogtreecommitdiffstats
path: root/src/android/templates/res
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2014-08-07 13:04:35 +0300
committerBogDan Vatra <bogdan@kde.org>2014-08-07 12:27:51 +0200
commit8b7a2d582c4c3030c48c799a4384a62be8f605b0 (patch)
tree30e487dbcdea0a3dbbb5c53796fdaadc05944fa5 /src/android/templates/res
parente26404e43ffbb0f8f00f017c3c0fa02e44a2d116 (diff)
Android: Say hello to gradle!
Add build.gradle script, move Android template files to another folder. These files are specific to every project, and they should be copied to then project android folder. Switching from Ant to Gradle brings lots of advantages: - it is way faster when rebuilding (25-50% faster than ant). - it enables first class Android Studio integration. - adding Android Extras libs (e.g. Google Play services, OBB, etc.) to your project is now painless. [ChangeLog][Android] Added Gradle support to build the APK. Change-Id: I9c8cb355118c9ac1997270c8b80916eca43fce4d Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
Diffstat (limited to 'src/android/templates/res')
-rw-r--r--src/android/templates/res/values/libs.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/android/templates/res/values/libs.xml b/src/android/templates/res/values/libs.xml
new file mode 100644
index 0000000000..664ab0abec
--- /dev/null
+++ b/src/android/templates/res/values/libs.xml
@@ -0,0 +1,25 @@
+<?xml version='1.0' encoding='utf-8'?>
+<resources>
+ <array name="qt_sources">
+ <item>https://download.qt-project.org/ministro/android/qt5/qt-5.3</item>
+ </array>
+
+ <!-- The following is handled automatically by the deployment tool. It should
+ not be edited manually. -->
+
+ <array name="bundled_libs">
+ <!-- %%INSERT_EXTRA_LIBS%% -->
+ </array>
+
+ <array name="qt_libs">
+ <!-- %%INSERT_QT_LIBS%% -->
+ </array>
+
+ <array name="bundled_in_lib">
+ <!-- %%INSERT_BUNDLED_IN_LIB%% -->
+ </array>
+ <array name="bundled_in_assets">
+ <!-- %%INSERT_BUNDLED_IN_ASSETS%% -->
+ </array>
+
+</resources>