aboutsummaryrefslogtreecommitdiff
path: root/platform/android/java/src/org/godotengine/godot
Commit message (Collapse)AuthorAgeFilesLines
* Implement OpenGL ES rasterizer selection logic for Android.geequlim2018-06-261-3/+12
|
* Provide error details when in-app purchase failsRuslan Mustakov2018-04-192-13/+13
|
* Fix Android input source checksRuslan Mustakov2018-04-161-2/+2
| | | | | | Input source types are not pure bit flags, they are combinations of flags, so != 0 check was incorrect and resulted in crashes later, when trying to obtain the device.
* Remove some debugging prints on AndroidHugo Locurcio2018-02-181-48/+0
|
* Add signals and a check function for Android service connectivity.Xavier Sellier2018-02-142-1/+28
| | | | | | | - Add a iap_connect and iap_disconnect events for android platform. - Add isConnected() function returning true if its connected to android service, false otherwise (cherry picked from commit 546b48813f2b75481d846957275f6d4eecd8de3c)
* Fix broken APK expansion due to missed option renamesRémi Verschelde2018-02-131-1/+1
| | | | | | | Command line options were refactored for 3.0 to follow the common usage of double-dashed long options, but `--main-pack` went through the cracks. Fixes #16533.
* Fix Android onTextChanged crashRuslan Mustakov2018-01-171-4/+7
| | | | | | As it turns out, onTextChanged supplies a mutable CharSequence, which lead to crashes or unexpected behaviour when input was coming faster than it was processed.
* Fix Android multi touchvolzhs2018-01-072-5/+2
| | | | Fix #11798
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-0522-0/+22
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-0122-44/+44
| | | | Happy new year to the wonderful Godot community!
* Style: Apply clang-format to Java filesRémi Verschelde2017-12-1025-1462/+1371
| | | | Only those from org/godotengine/godot though, not the thirdparty ones.
* Improve slang, especially in user-visible partsUnknown2017-12-051-9/+9
|
* Align sensors and implement gravity sensor for AndroidBastiaan Olij2017-11-112-3/+11
|
* export onBackPress for Android ModuleRamesh Ravone2017-10-152-8/+10
|
* Merge pull request #11775 from endragor/android-keyboard-inputAndreas Haas2017-10-101-52/+21
|\ | | | | Improve input handling on Android
| * Improve input handling on AndroidRuslan Mustakov2017-10-041-52/+21
| | | | | | | | | | | | | | | | | | - Dispatch input immediately as it comes, instead of delaying it to the next step(). - Fix text box input handling when caret is at the middle of the text. - Minimize queueEvent calls on Java side.
* | Allow to obtain virtual keyboard heightRuslan Mustakov2017-10-042-0/+17
|/ | | | | | | | On mobile platforms virtual keyboards take up significant amount of screen space and UI containing a text box may need to be adjusted after the keyboard appears to keep the text box visible to user. This commit adds a way to obtain virtual keyabord height so that controls are aware of how much they need to move.
* Fix TrustManager for Androidvolzhs2017-09-211-16/+4
|
* Make GDNative work on AndroidRuslan Mustakov2017-08-305-140/+255
| | | | | | | | | | | | | | | | | | | | | | | | The changes include work done to ensure that GDNative apps and Nim integration specifically can run on Android. The changes have been tested on our WIP game, which uses godot-nim and depends on several third-party .so libs, and Platformer demo to ensure nothing got broken. - .so libraries are exported to lib/ folder in .apk, instead of assets/, because that's where Android expects them to be and it resolves the library name into "lib/<ABI>/<name>", where <ABI> is the ABI matching the current device. So we establish the convention that Android .so files in the project must be located in the folder corresponding to the ABI they were compiled for. - Godot callbacks (event handlers) are now called from the same thread from which Main::iteration is called. It is also what Godot now considers to be the main thread, because Main::setup is also called from there. This makes threading on Android more consistent with other platforms, making the code that depends on Thread::get_main_id more portable (GDNative has such code). - Sizes of GDNative API types have been fixed to work on 32-bit platforms.
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-2722-22/+22
|
* fix UnsatisfiedLinkError when quittingHenrik Andersson2017-08-232-2/+2
|
* Fixes for new two-dash long command line argumentsRémi Verschelde2017-08-211-6/+6
| | | | | | | | | - Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Always use long form of arguments when starting a new Godot process from C++, for clarity and easy grepping - Cleanup obsolete code here and there
* Revert "Second take at making command-line arguments more UNIX-like + ↵Juan Linietsky2017-08-191-6/+6
| | | | main.cpp and help cleanup"
* Fixes for new two-dash long command line argumentsRémi Verschelde2017-08-191-6/+6
| | | | | | | | - Fixes some single-dash leftovers that were missed in the previous commit - Reorder the help output for clarity, and document missing options - Drop obsolete options: --noop, --pack, --editor-scene, --level, --import, --import-script, --no-quit - Improve error message on malformed arguments and do not display help on error - Cleanup obsolete code here and there
* -Reorganized all properties of project settings (Sorry, Again).Juan Linietsky2017-07-171-1/+1
| | | | | (Lot's of bloat accumulated, so it was time for clean up.) -Made EditorSettings and ProjectSettings search more useful (search in sections too)
* Fix android payment logical errorvolzhs2017-05-191-24/+23
| | | | | getting sku detail runs only if mod != 0 which means querying 20*n will not get sku details. referenced from https://github.com/googlesamples/android-play-billing/blob/master/TrivialDrive/app/src/main/java/com/example/android/trivialdrivesample/util/IabHelper.java#L1029-L1062
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-0822-0/+22
|
* Fix typos in source code using codespellRémi Verschelde2017-03-242-2/+2
| | | | From https://github.com/lucasdemarchi/codespell
* Several fixes to Android exporter and port.Juan Linietsky2017-03-232-11/+13
| | | | Android seems to be working again!
* Fix handling input for Androidvolzhs2017-03-041-37/+12
|
* Style: Fix whole-line commented codeRémi Verschelde2017-01-1411-66/+74
| | | | | They do not play well with clang-format which aligns the `//` part with the rest of the code block, thus producing badly indented commented code.
* Added a BACK notification besides QUIT, so they go in separate channels.Juan Linietsky2017-01-111-1/+1
|
* Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-0122-22/+22
| | | | | | | | 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!
* Add alert window on Androidvolzhs2016-11-281-0/+19
|
* Fix Directory.dir_exist/get_current_dir for 'res://' on Androidvolzhs2016-11-091-0/+5
| | | | Fix #7014
* 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
| |
* | Implement get_screen_dpi() on AndroidMario Schlack2016-07-201-0/+6
|/
* Added gyroscope support to Godot and AndroidJamil Halabi2016-07-162-0/+8
|
* Fix Android sensors polling rate on resumeGeorge Marques2016-06-241-2/+2
| | | | Fix #5306
* correct current Intent for androidvolzhs2016-06-211-1/+13
|
* Add missing license headers in our source files (#5255)Rémi Verschelde2016-06-1818-2/+478
| | | Also removes a couple wrong Godot headers from third-party source files.
* Merge pull request #4729 from volzhs/android-23Rémi Verschelde2016-06-071-1/+1
|\ | | | | Supporting Android API 23 (Android 6.0)
| * Supporting Android API 23 (Android 6.0)volzhs2016-05-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Add magnetometer sensor support for Androidfluffrabbit2016-05-272-1/+13
|/
* support gamepad remapping on androidhondres2016-01-245-131/+566
|
* Add ability to set "keep screen on" for androidvolzhs2016-01-161-4/+17
|
* Update copyright in remaining files + prints in the UIRémi Verschelde2016-01-114-4/+4
|
* Renamed godot domain from com.android.godot (which was incorrect) to ↵Juan Linietsky2016-01-0822-0/+4107
org.godotengine.godot