summaryrefslogtreecommitdiffstats
path: root/platform/android/java/lib/src
Commit message (Collapse)AuthorAgeFilesLines
* Style: Add missing copyright headersRémi Verschelde2019-11-221-0/+30
|
* Add request permission automatically at androidCagdas2019-10-222-29/+165
|
* Add `View onMainCreateView(Activity activity)` api to the ↵Fredia Huya-Kouadio2019-10-181-0/+34
| | | | | | `Godot.SingletonBase` class. The new api allows plugins to define and provide their views for inclusion in the Godot Android view hierarchy.
* Adds Pen support for AndroidAlexander Holland2019-10-042-1/+17
|
* Merge pull request #32250 from lawnjelly/android-keyboard2Rémi Verschelde2019-09-231-4/+2
|\ | | | | Fix Android keyboard crash with left cursor
| * Fix Android keyboard crash with left cursorlawnjelly2019-09-231-4/+2
| | | | | | | | | | | | | | Fixes #32168. Previously we were returning all key up and key down messages as unhandled to the OS. This was resulting in crashes on certain keypresses (left cursor), for undetermined reason. This PR defaults all key up and keydown messages to be returned as handled by Godot, except those explicitly coded as exceptions (currently volume keys only).
* | Add new events and accompanying logic to notify when the app is paused and ↵fhuya2019-09-194-15/+63
|/ | | | resumed on Android devices.
* Split the Android platform java logic into an Android library module (`lib`) ↵fhuya2019-09-0468-0/+13503
and an application module (`app`). The application module `app` serves double duties of providing the prebuilt Godot binaries ('android_debug.apk', 'android_release.apk') and the Godot custom build template ('android_source.zip').