aboutsummaryrefslogtreecommitdiff
path: root/platform/android (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5135 from volzhs/android-manifestRémi Verschelde2016-06-191-1/+1
|\ | | | | fix android support screen property for large screen
| * fix android support screen property for large screenvolzhs2016-06-101-1/+1
| |
* | Drop empty files that are not used anywhereRémi Verschelde2016-06-182-15/+0
| | | | | | | | Part of #5272
* | Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-1825-36/+648
| | | | | | Also removes a couple wrong Godot headers from third-party source files.
* | Handle tmp files properly on Android exportPedro J. Estébanez2016-06-151-9/+4
| |
* | Zip-align exported APKPedro J. Estébanez2016-06-131-12/+100
| |
* | Fix typoPedro J. Estébanez2016-06-111-1/+1
| |
* | Keep certain assets uncompressed on Android exportPedro J. Estébanez2016-06-111-3/+58
|/
* -Heavily improved editor startup and exit performanceJuan Linietsky2016-06-071-84/+89
|
* Merge pull request #4729 from volzhs/android-23Rémi Verschelde2016-06-0712-158/+51
|\ | | | | Supporting Android API 23 (Android 6.0)
| * Add comments for NotificationCompat to support API < 16volzhs2016-05-253-3/+5
| |
| * fix compatibility for Android API 14 with supporting API 23volzhs2016-05-245-12/+14
| | | | | | | | | | 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-2010-151/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Remove Make-related flags from Android buildGeorge Marques2016-06-011-3/+3
| | | | | | | | | | | | | | | | They were wrongly placed, creating a file named "-fpic" instead of applying "-fpic" to the build. This file was in .gitignore, which made it less noticiable. This also adds build.gradle to .gitignore.
* | Icon: Remove more grey capsules behind official logoRémi Verschelde2016-05-301-0/+0
| |
* | Add magnetometer sensor support for Androidfluffrabbit2016-05-277-6/+57
| |
* | fix unexpected char: '\' error on windowsvolzhs2016-05-241-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | error occurred when register additional directory for android module on windows. ### config.py ### ``` def can_build(plat): return plat=="android" def configure(env): if (env['platform'] == 'android'): env.android_add_res_dir("android/res") ```
* | remove trailing whitespaceHubert Jarosz2016-05-211-1/+1
| |
* | Android buildsystem: Drop obsolete NDK_TOOLCHAIN argumentRémi Verschelde2016-05-191-1/+0
|/ | | It was a duplicate of NDK_TARGET, and not used for anything.
* OSX: Fix lib suffix for Android lib (#4499)Rémi Verschelde2016-05-011-3/+1
| | | Fixes #1452.
* Move export GUI debug toggle to export settings windoweska2016-04-281-1/+1
|
* remove unused resources and add korean locale for androidvolzhs2016-04-192-3/+52
| | | | | - remove unused resources in platform/android/java/res/values/strings.xml - add korean language resource for apk expansion download screen
* Remove trailing spacesRémi Verschelde2016-04-021-16/+16
|
* Merge pull request #4105 from akien-mga/pr-android-shutdown-adbRémi Verschelde2016-03-201-0/+1
|\ | | | | Expose android/shutdown_adb_on_exit parameter
| * Expose android/shutdown_adb_on_exit parameter and default to trueRémi Verschelde2016-03-201-0/+1
| | | | | | | | | | | | | | | | It was added in 30d0ca9 for the Steam build but only enabled when parsing a ._sc_ file that would define it. It is now available for all users to toggle, in and outside of Steam. Fixes #4073.
* | Add support for gnu-libstc++-4.9 needed by recent NDK versionsblubee2016-03-201-7/+9
| | | | | | | | | | | | The 4.9 version is the default one, people can still build using 4.8 with older NDK versions by setting the (optional) NDK_TARGET and NDK_TARGET_X86 environment variables.
* | Add -r flag to adb install for keep app user datasanikoyes2016-03-181-0/+1
|/
* remove trailing whitespaceHubert Jarosz2016-03-095-7/+7
|
* fix gradle build on windowsvolzhs2016-03-021-1/+1
|
* added [presets] to ._sc_ and "android/shutdown_adb_on_exit" to editor_settingsAriel Manzur2016-02-271-0/+10
|
* Merge pull request #3428 from Hinsbart/android-gamepadpunto-2016-02-089-160/+668
|\ | | | | support gamepad remapping on android
| * use fallback mapping from listHondres2016-01-271-1/+1
| |
| * can use fallback mapping on all platformshondres2016-01-241-1/+1
| |
| * support gamepad remapping on androidhondres2016-01-249-159/+667
| |
* | Combies driver split and spawn fix, closes #3265Juan Linietsky2016-01-251-0/+2
|/
* fix export bugJuan Linietsky2016-01-201-1/+1
|
* -Remote deploy now uses FS over USB on Android, super fast!Juan Linietsky2016-01-201-0/+37
|
* Add ability to set "keep screen on" for androidvolzhs2016-01-164-9/+41
|
* Fix crash on android 6.0.1, fixes #3321mrezai2016-01-121-2/+2
|
* Update copyright in remaining files + prints in the UIRémi Verschelde2016-01-114-4/+4
|
* Fix bug related to EOF in Android FileAccessJuan Linietsky2016-01-091-1/+7
|
* Fix maven repositories bugmrezai2016-01-092-5/+6
|
* removed unnecesary comma in gradle templateJuan Linietsky2016-01-081-1/+1
|
* Renamed godot domain from com.android.godot (which was incorrect) to ↵Juan Linietsky2016-01-0829-106/+106
| | | | org.godotengine.godot
* -Removed ANT build system for Android, as it was deprecated by GoogleJuan Linietsky2016-01-08285-8836/+573
| | | | -Added new Gradle build system, as it is the required build system
* change android install location to automatic, closes #1997Juan Linietsky2016-01-031-1/+1
|
* Update copyright to 2016 in headersGeorge Marques2016-01-0126-26/+26
|
* Merge pull request #2956 from est31/add_system_wide_export_pathJuan Linietsky2015-12-081-13/+16
|\ | | | | Add way to look for templates at system wide level too
| * Add way to look for templates at system wide level tooest312015-11-301-13/+16
| | | | | | | | | | | | | | | | Useful for everybody wanting to package godot. Fixes #1026. -> Retain the old behaviour: path in error msg only when exporting. -> User templates override system templates
* | -several fixes to Android to work better on Tegra 3/4 devices, uses 16 bits ↵Juan Linietsky2015-12-026-4/+23
| | | | | | | | FBOs so all 2D shader effects should now work in every single Android device.