aboutsummaryrefslogtreecommitdiff
path: root/platform/android
Commit message (Collapse)AuthorAgeFilesLines
* Style: Fix some badly formatted filesRémi Verschelde2017-04-081-2/+2
|
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-0848-0/+48
|
* Merge pull request #8273 from RandomShaper/fix-android-x86-2.1Rémi Verschelde2017-04-051-0/+2
|\ | | | | Fix crash on Android-x86 (2.1)
| * Fix crash on Android-x86Pedro J. Estébanez2017-04-051-0/+2
| |
* | Update build.gradle.templateRamesh Ravone2017-04-051-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/ (cherry picked from commit 77c81a21d84d30b2b78027821db45a53d583762f)
* SCons: Add option to toggle warnings (on by default)Rémi Verschelde2017-03-251-3/+1
| | | | | | All the warnings are factored out of the platform-specific files and moved to SConstruct. Will have to check that it does not introduce regressions on some platforms/compilers.
* Android gravity vector Godot 2.1BastiaanOlij2017-03-217-28/+72
|
* android: adding classpath and gradle pluginsRamesh Mani Maran2017-03-192-1/+12
| | | | (cherry picked from commit 27c7d253aa1f2125e37344d7829b5b87a4b9a901)
* Update mouse position on touch and release events (Android)denis2017-03-191-0/+2
| | | | (cherry picked from commit 55835167a4bf88d67b1c5d80bda606a57b919555)
* Bring that Whole New World to the Old Continent tooRémi Verschelde2017-03-1924-3375/+2921
| | | | | Applies the clang-format style to the 2.1 branch as done for master in 5dbf1809c6e3e905b94b8764e99491e608122261.
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-181-3/+3
| | | | | | | | The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful. (Manual redo of 49c065d29ca07040c3fd810026121164ad86b247)
* Style: Fix statements ending with ';;'Rémi Verschelde2017-03-181-1/+1
| | | | (cherry picked from commit f44ee891beaad397481dd88da41cb80e6539774f)
* support for multiple maven urlRamesh Mani Maran2017-03-181-2/+3
| | | | (cherry picked from commit aa7490ffd03149930a7526e4464f47a73496b32e)
* #7215 try to fix adb bad targeting user on deviceJerome670002017-03-181-1/+1
| | | | (cherry picked from commit 8c19a6cb85bc4ff00a8b2f7afe602c5724222a23)
* Fix handling input for Androidvolzhs2017-03-041-37/+12
|
* Fix resources for Android modules not being mergedPedro J. Estébanez2017-01-241-2/+1
| | | | Fixes #7421
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-1248-48/+48
| | | | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games! (cherry picked from commit c7bc44d5ad9aae4902280012f7654e2318cd910e)
* Add alert window on Androidvolzhs2017-01-124-5/+38
| | | | (cherry picked from commit 9a20068ab7108357c78e9ac00eb90a3d72da7651)
* Update/fix Android buildPedro J. Estébanez2016-11-151-7/+7
| | | | | | | Fix wrong path for 32-bit Windows, which fixes #7084 Exclude 32-bit Windows from multi-threaded linking because it's not supported by the NDK Remove 32-bit Linux as there is no NDK variant for it (cherry picked from commit 5a26459c065558546a708c18ad84830674d5972d)
* Make Android export quicker (especially on Windows)Pedro J. Estébanez2016-11-151-19/+19
| | | | (cherry picked from commit 56721e5d9daf3bda0ad0711c165105c7ceedd29f)
* Fix Directory.dir_exist/get_current_dir for 'res://' on Androidvolzhs2016-11-152-2/+7
| | | | | | Fix #7014 (cherry picked from commit 8d454ed9a7105bf1a4c19c238a0e904f220c1bb5)
* scons: Reorder options for clarityRémi Verschelde2016-11-031-1/+0
| | | | | | Also prefix all thirdparty-related toggles with `builtin`. (cherry picked from commit cc95d4448c6005c3007c8460f09b8be1595eb3c0)
* Improve Android build (Clang + tidyness)Pedro J. Estébanez2016-11-021-87/+100
| | | | (cherry picked from commit b18ff942be0dd89bda32e01cc30a41c196fc9290)
* style: Various other PEP8 fixes in Python filesRémi Verschelde2016-11-021-2/+2
| | | | | | | | | | | | Done with `autopep8 --select=E7`, fixes: - E701 - Put colon-separated compound statement on separate lines. - E702 - Put semicolon-separated compound statement on separate lines. - E703 - Put semicolon-separated compound statement on separate lines. - E711 - Fix comparison with None. - E712 - Fix (trivial case of) comparison with boolean. - E713 - Fix (trivial case of) non-membership check. - E721 - Fix various deprecated code (via lib2to3).
* style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-021-2/+5
| | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
* style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-022-148/+148
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
* style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-022-221/+221
| | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
* SCsub: Add python shebang as a hint for syntax highlightingRémi Verschelde2016-10-301-0/+2
| | | | | | Also switch existing shebangs to "better" /usr/bin/env python. (cherry picked from commit fc8ccd5b8c8b779bffd0f4d7f22f2f964c939163)
* Theora: Don't compile unnecessary files, rename "x86_opt_*"Błażej Szczygieł2016-10-301-1/+1
| | | | (cherry picked from commit 4ffa8f224d8d57520bd4953d67291c83152cd5e5)
* zlib: Split thirdparty files, simplify scons optionRémi Verschelde2016-10-301-1/+0
| | | | (cherry picked from commit cbf52606f4928df46fc89d37d781bad782f0616e)
* ogg/vorbis/opus/speex: Make them modules and unbundle thirdparty libsRémi Verschelde2016-10-301-1/+2
| | | | | | | | | | | | | | | Took the opportunity to undo the Godot changed made to the opus source. The opus module should eventually be built in its own environment to avoid polluting others with too many include dirs and defines. TODO: Fix the platform/ stuff for opus. (cherry picked from commit d9a291f6411f2e571c181da0ac89f550ba73f681) speex module was only added while cherry-picking, as speex is removed in the master branch but we don't want to break compatibility in 2.1.x. Unbundling wasn't done as the module uses the internal speex_free, so it would require some more work.
* Drop nedmalloc which is apparently not used anymoreRémi Verschelde2016-10-301-3/+2
| | | | (cherry picked from commit f63bf12193deaf9cae5b1d6c7289afc17a7de946)
* Fixed tiny error in detect.py causing compilation for Android to fail.Randy Tan Shaoxian2016-10-201-1/+1
|
* Fix crash when using Directory.dir_exists(path) on Androidvolzhs2016-10-171-1/+0
| | | | (cherry picked from commit 4a57821349fc8fd4d4c7e375a1f8cf09623ee856)
* Correct OS architecture detectionAnthony Fieroni2016-10-171-8/+9
| | | | | Signed-off-by: Anthony Fieroni <bvbfan@abv.bg> (cherry picked from commit f87e32696de6126f05d0b839a2a3689dd16fe73f)
* Fix compile flags not getting to the Android buildPedro J. Estébanez2016-10-091-3/+3
| | | | (cherry picked from commit 7f51bb7b1c5a8104afa859e38b8b207abfbd2093)
* removed confusing "if(true)" statement with empty "else" blocksyskrank2016-10-091-9/+4
| | | | (cherry picked from commit af4b0db1e4aef0c4ef77f025b9d539d7cce814bf)
* Fix manifest generation bug in Android exportPedro J. Estébanez2016-10-091-6/+4
| | | | (cherry picked from commit 2c9d98bb4869ad8a8ec7af9ba0c8dd7d7c243fb5)
* Fix (potentially) Android libs packaging issue (#5645)Pedro J. Estébanez2016-09-181-1/+0
| | | | (cherry picked from commit e9065632c6193736a2f539cc5f8906db4855c3ac)
* Android: Rename values-zh to values-zh-rCN (#6063)Skyfrit2016-08-081-1/+1
| | | | (cherry picked from commit 4f6a21b0df772804b67073dc65f000f571a4511e)
* Android: Add support for Traditional Chinese (HK) (#6061)Skyfrit2016-08-081-0/+4
| | | | (cherry picked from commit 664b5b5137b00c170968c688d880561ab294ae91)
* Android: Add support for Traditional Chinese (TW) (#6061)Skyfrit2016-08-081-0/+4
| | | | (cherry picked from commit 8ab4acd17f06c31b9281c63232756c4d1a7b3a24)
* Merge pull request #5415 from volzhs/improve-android-paymentJuan Linietsky2016-07-242-190/+313
|\ | | | | Improve android payment
| * Add querying details of IAP items for androidvolzhs2016-07-182-148/+279
| |
| * Fix can't get all info if user purchases many items and not consumedvolzhs2016-07-181-42/+34
| |
* | Minor code formatting in platform/androidMario Schlack2016-07-2113-47/+69
| |
* | Merge pull request #5835 from volzhs/issue-5831Rémi Verschelde2016-07-211-7/+7
|\ \ | | | | | | Fix compile error if use android_stl=yes
| * | Fix compile error if use android_stl=yesvolzhs2016-07-211-7/+7
| | |
* | | Merge pull request #5819 from hurikhan/android_getScreenDPIRémi Verschelde2016-07-214-3/+28
|\ \ \ | |/ / |/| | Implement get_screen_dpi() on Android
| * | Implement get_screen_dpi() on AndroidMario Schlack2016-07-204-3/+28
| |/