summaryrefslogtreecommitdiff
path: root/platform/android/build.gradle.template
AgeCommit message (Collapse)Author
2018-10-28Move jcenter behind mavenCentral and google gradle repos to fix build problemsKaren Schwane
2018-10-08Fix build with Android NDK r18Wojciech Milkowski
As a bonus there is no need to use undocumented Gradle API any more.
2018-05-09Remove android compatibility under API 16volzhs
2018-01-12Fix Android build errorvolzhs
Fix #15603 Fix #15513
2018-01-06Fix Android build errorvolzhs
2018-01-03Update android build tool to latestvolzhs
2017-12-06Update Android compileSdkVersion to 26Ruslan Mustakov
2017-11-20Set android 'compileSdkVersion' to 24Konstantin Zaitsev
2017-10-06Use additional repositories for gradle build dependencies tooRuslan Mustakov
2017-07-30update gradle-android buildtool for masterISylvox
2017-05-26Fix android build regression by be7ced4volzhs
2017-05-16Upgrade Android build tools to the latestPedro J. Estébanez
2017-05-12Merge pull request #8725 from volzhs/android-jni-masterRémi Verschelde
Fix compile error when use "android_add_jni_dir"
2017-05-12Fix compile error when use "android_add_jni_dir"volzhs
2017-05-12Update to latest gradlevolzhs
2017-04-09Android: Support to change minSdkVersion (#8313)Ramesh Ravone
2017-03-25Update build.gradle.templateRamesh Ravone
Updating project repository, added jcenter() since Android Studio uses it by default. https://www.jfrog.com/knowledge-base/why-should-i-use-jcenter-over-maven-central/
2017-03-18android: adding classpath and gradle pluginsRamesh Mani Maran
2017-01-25Fix resources for Android modules not being mergedPedro J. Estébanez
Fixes #7421
2016-09-07Fix (potentially) Android libs packaging issue (#5645)Pedro J. Estébanez
2016-07-10Merge pull request #5077 from RandomShaper/improve-android-buildJuan Linietsky
Improve Android build
2016-07-07Add android_add_default_config for config.pyvolzhs
usage : env.android_add_default_config("applicationId 'com.godot.game'")
2016-06-27Make Android build smarter (SCons + Gradle)Pedro J. Estébanez
Upgrade Gradle and Android plugin for Gradle Disable all signing and zip-aligning for the export templates Give correct names to generated APKs Put .so files built by SCons right where Gradle has to pick them according to arch & build type Downgrade NDK platform to 14 to match minSdkVersion
2016-06-25Gradle: remove trailing spacesRémi Verschelde
2016-05-25Add comments for NotificationCompat to support API < 16volzhs
2016-05-24fix compatibility for Android API 14 with supporting API 23volzhs
using ``NotificationCompat`` in ``support-v4`` library will increase APK filesize a little bit, but it guarantees to run OK with API 4+ tested with API 19 and 23 devices
2016-05-20Supporting Android API 23 (Android 6.0)volzhs
If we update build gradle to use ``compileSdkVersion 23``, ``org.apache.http`` package causes error. (issue #4711) We need to use ``useLibrary 'org.apache.http.legacy'`` to solve this problem. To use ``useLibrary``, we need to use latest gradle also. And now, we faced another problem with ``APK Expansion`` java sources. ``` /platform/android/java/src/com/google/android/vending/expansion/downloader/impl/DownloadNotification.java 137 : mCurrentNotification.setLatestEventInfo(mContext, mCurrentTitle, mCurrentText, mContentIntent); // causes error ``` So, some of APK Expansion java sources are updated by referencing commits from https://github.com/danikula/Google-Play-Expansion-File And dropped V3CustomNotification.java which was for android 3.0, since godot supports android 14 (4.0) above officially. Unfortunately, another problem, The 'MissingTranslation' error was occurred. So, build.gradle is updated to use ``disable 'MissingTranslation'`` Additionally, I updated ``buildToolsVersion``, ``targetSdkVersion`` to latest version. I tested APK Expansion funtionality on Android 6.0 (Nexus 9, Nexus 6p) and Android 4.4 (Galaxy Note 2) with Google Developer console.
2016-01-09Fix maven repositories bugmrezai
2016-01-08removed unnecesary comma in gradle templateJuan Linietsky
2016-01-08-Removed ANT build system for Android, as it was deprecated by GoogleJuan Linietsky
-Added new Gradle build system, as it is the required build system