aboutsummaryrefslogtreecommitdiff
path: root/platform/android/build.gradle.template
Commit message (Collapse)AuthorAgeFilesLines
* Remove android compatibility under API 16volzhs2018-05-091-1/+0
|
* Fix Android build errorvolzhs2018-01-121-0/+1
| | | | | Fix #15603 Fix #15513
* Fix Android build errorvolzhs2018-01-061-1/+1
|
* Update android build tool to latestvolzhs2018-01-031-2/+2
|
* Update Android compileSdkVersion to 26Ruslan Mustakov2017-12-061-1/+1
|
* Set android 'compileSdkVersion' to 24Konstantin Zaitsev2017-11-201-1/+1
|
* Use additional repositories for gradle build dependencies tooRuslan Mustakov2017-10-061-2/+3
|
* update gradle-android buildtool for masterISylvox2017-07-301-2/+2
|
* Fix android build regression by be7ced4volzhs2017-05-261-5/+0
|
* Upgrade Android build tools to the latestPedro J. Estébanez2017-05-161-1/+1
|
* Merge pull request #8725 from volzhs/android-jni-masterRémi Verschelde2017-05-121-0/+1
|\ | | | | Fix compile error when use "android_add_jni_dir"
| * Fix compile error when use "android_add_jni_dir"volzhs2017-05-121-0/+1
| |
* | Update to latest gradlevolzhs2017-05-121-1/+1
|/
* Android: Support to change minSdkVersion (#8313)Ramesh Ravone2017-04-091-2/+0
|
* Update build.gradle.templateRamesh Ravone2017-03-251-0/+1
| | | | | | 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/
* android: adding classpath and gradle pluginsRamesh Mani Maran2017-03-181-0/+3
|
* Fix resources for Android modules not being mergedPedro J. Estébanez2017-01-251-2/+1
| | | | Fixes #7421
* Fix (potentially) Android libs packaging issue (#5645)Pedro J. Estébanez2016-09-071-1/+0
|
* Merge pull request #5077 from RandomShaper/improve-android-buildJuan Linietsky2016-07-101-4/+18
|\ | | | | Improve Android build
| * Make Android build smarter (SCons + Gradle)Pedro J. Estébanez2016-06-271-4/+18
| | | | | | | | | | | | | | | | 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
* | Add android_add_default_config for config.pyvolzhs2016-07-071-0/+1
|/ | | | usage : env.android_add_default_config("applicationId 'com.godot.game'")
* Gradle: remove trailing spacesRémi Verschelde2016-06-251-7/+7
|
* Add comments for NotificationCompat to support API < 16volzhs2016-05-251-1/+1
|
* fix compatibility for Android API 14 with supporting API 23volzhs2016-05-241-1/+1
| | | | | 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
* Supporting Android API 23 (Android 6.0)volzhs2016-05-201-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Fix maven repositories bugmrezai2016-01-091-3/+1
|
* removed unnecesary comma in gradle templateJuan Linietsky2016-01-081-1/+1
|
* -Removed ANT build system for Android, as it was deprecated by GoogleJuan Linietsky2016-01-081-0/+72
-Added new Gradle build system, as it is the required build system