summaryrefslogtreecommitdiffstats
path: root/platform/android/java/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-274-6/+46
|\
| * Merge pull request #99694 from dsnopek/android-os-create-instance-return-valueThaddeus Crews2024-11-273-3/+3
| |\ | | | | | | | | | Android: `OS.create_instance()` should return `-1` on failure
| | * Android: `OS.create_instance()` should return `-1` on failureDavid Snopek2024-11-253-3/+3
| | |
| * | Android: Extension support for native file dialogAnish Mishra2024-11-191-3/+43
| |/
* | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-121-1/+1
|\|
| * Merge pull request #98687 from ↵Thaddeus Crews2024-11-121-1/+1
| |\ | | | | | | | | | | | | | | | m4gr3d/disable_swappy_requirement_for_as_debug_builds Update the `production` build argument for Android Studio debug builds
| | * Update the `production` build argument for Android Studio debug buildsFredia Huya-Kouadio2024-10-301-1/+1
| | | | | | | | | | | | | | | Swappy is required for `production` build which breaks the Android Studio debug builds as those turns on the `production` argument. This commit updates the logic so that the `production` argument is only used by Android Studio for `release` builds.
* | | Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-063-25/+19
|\| |
| * | Merge pull request #97631 from m4gr3d/prompt_apk_install_after_generationThaddeus Crews2024-11-041-3/+13
| |\ \ | | | | | | | | | | | | [Android editor] Enable automatic install of exported apks for the Android editor
| | * | Enable automatic install of export apks for the Android editorFredia Huya-Kouadio2024-10-281-3/+13
| | | |
| * | | Merge pull request #98712 from syntaxerror247/android_accent_colorThaddeus Crews2024-11-041-0/+6
| |\ \ \ | | | | | | | | | | | | | | | [Android] Implement support for accent color retrieval
| | * | | [Android] Implement support for accent color retrievalAnish Mishra2024-11-011-0/+6
| | | | |
| * | | | Merge pull request #98709 from darksylinc/matias-upsidedown-splashThaddeus Crews2024-11-041-22/+0
| |\ \ \ \ | | |/ / / | |/| | | | | | | | Fix splash screen upside down on Android
| | * | | Fix splash screen upside down on AndroidMatias N. Goldberg2024-10-311-22/+0
| | | |/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes an issue introduced in #96439 (see https://github.com/godotengine/godot/pull/96439#issuecomment-2447288702) Godot was relying on Java's activity.getWindowManager().getDefaultDisplay().getRotation(); to apply pre-rotation but this is wrong. First, getRotation() may temporarily return a different value from the correct one; which is what was causing the splash screen to be upside down. It would return -90 instead of 90 for the first rendered frame. But unfortunately, the splash screen is just one frame rendered for a very long time, so the error lingered for a long time for everyone to see. Second, to determine what rotation to use, we should be looking at what Vulkan told us, which is the value we pass to VkSurfaceTransformFlagBitsKHR::preTransform. This commit removes the now-unnecessary screen_get_internal_current_rotation() function (which was introduced by #96439) and now saves the preTransform value in the swapchain.
* | | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-024-0/+248
|\| | |
| * | | [Android] Implement native file picker supportAnish Mishra2024-10-304-0/+248
| |/ /
* | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-305-4/+76
|\| |
| * | Merge pull request #98615 from Summersay415/three-opengls-pleaseThaddeus Crews2024-10-291-3/+15
| |\ \ | | | | | | | | | | | | Fix fallbacks to OpenGL
| | * | Fix fallbacks to OpenGLSummersay4152024-10-281-3/+15
| | |/
| * | Merge pull request #98574 from syntaxerror247/android_input_dialogThaddeus Crews2024-10-294-1/+38
| |\ \ | | | | | | | | | | | | [Android] Implement native input dialog support
| | * | [Android] Implement native input dialog supportAnish Mishra2024-10-294-1/+38
| | |/
| * | Merge pull request #96439 from darksylinc/matias-TheForge-pr03-rebasedClay John2024-10-291-0/+23
| |\ \ | | |/ | |/| Add Swappy & Pre-Transformed Swapchain
| | * Add Swappy & Pre-Transformed SwapchainMatias N. Goldberg2024-10-281-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Adds Swappy for Android for stable frame pacing - Implements pre-transformed Swapchain so that Godot's compositor is in charge of rotating the screen instead of Android's compositor (performance optimization for phones that don't have HW rotator) ============================ The work was performed by collaboration of TheForge and Google. I am merely splitting it up into smaller PRs and cleaning it up. Changes from original PR: - Removed "display/window/frame_pacing/android/target_frame_rate" option to use Engine::get_max_fps instead. - Target framerate can be changed at runtime using Engine::set_max_fps. - Swappy is enabled by default. - Added documentation. - enable_auto_swap setting is replaced with swappy_mode.
* | | Fix copyright headers referring to GodotSpartan3222024-10-2734-68/+68
| | |
* | | Merge commit godotengine/godot@80f0b33313dae52d072ba2771a88ebcc4f0b4d6dSpartan3222024-10-181-3/+3
|\| |
| * | Fix Android app permissions for SDK levels earlier than 28Andreas Raddau2024-10-161-3/+3
| |/
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1156-0/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-1118-17/+17
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* [DisplayServer] Implement has_hardware_keyboard method for Android and iOS.bruvzg2024-10-022-1/+9
|
* Provide access to the Android runtime to GDScriptFredia Huya-Kouadio2024-09-292-1/+68
| | | | | | | | | | | | | | | | | | | | | | | Thanks for the fix of `JavaClassWrapper` in https://github.com/godotengine/godot/pull/96182 and the changes in the previous commit, this introduces an `AndroidRuntime` plugin which provides GDScript access to the Android runtime capabilities. This allows developers to get access to various Android capabilities without the need of a plugin. For example, the following logic can be used to check whether the device supports vibration: ``` var android_runtime = Engine.get_singleton("AndroidRuntime") if android_runtime: print("Checking if the device supports vibration") var vibrator_service = android_runtime.getApplicationContext().getSystemService("vibrator") if vibrator_service: if vibrator_service.hasVibrator(): print("Vibration is supported on device!") else: printerr("Vibration is not supported on device") else: printerr("Unable to retrieve the vibrator service") else: printerr("Couldn't find AndroidRuntime singleton") ```
* Add support for Android Themed Icons (monochrome)Anish Mishra2024-09-272-0/+1
|
* Style: Apply new `clang-format` changesThaddeus Crews2024-09-201-1/+1
|
* Update the Android editor flavors to avoid vendor-specific referencesFredia Huya-Kouadio2024-09-131-1/+1
|
* Disable some editor settings by default in the XR Editordevloglogan2024-09-093-0/+21
|
* Improve support for XR projectsFredia Huya-Kouadio2024-09-064-6/+64
|
* Restore 'Toggle fullscreen' menu for the Android editor and clean up the ↵Fredia Huya-Kouadio2024-08-281-46/+68
| | | | immersive mode logic
* Add support for launching the Play window in PiP modeFredia Huya-Kouadio2024-08-282-12/+23
|
* Add support to the Android editor for signing and verifying Android apksFredia Huya-Kouadio2024-08-261-0/+4
| | | | - Apk signing and verification is enabled using the apksig library from https://android.googlesource.com/platform/tools/apksig/+/ac5cbb07d87cc342fcf07715857a812305d69888
* Update the `GodotHost` interface to support signing and verifying Android apksFredia Huya-Kouadio2024-08-266-41/+71
| | | | | | Update the export logic to enable apk generation and signing for Android editor builds Note: Only legacy builds are supported. Gradle builds are not supported at this point in time.
* Update the storage access handler logic to support accessing / retrieving ↵Fredia Huya-Kouadio2024-08-2615-235/+648
| | | | contents with the `assets:/` prefix
* Merge pull request #94799 from ↵Rémi Verschelde2024-08-167-175/+547
|\ | | | | | | | | | | m4gr3d/memory_allocation_cleanup_and_optimizations Android memory cleanup and optimizations
| * Memory cleanup and optimizationsFredia Huya-Kouadio2024-08-167-175/+547
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Returns an empty list when there's not registered plugins, thus preventing the creation of spurious iterator objects - Inline `Godot#getRotatedValues(...)` given it only had a single caller. This allows to remove the allocation of a float array on each call and replace it with float variables - Disable sensor events by default. Sensor events can fired at 10-100s Hz taking cpu and memory resources. Now the use of sensor data is behind a project setting allowing projects that have use of it to enable it, while other projects don't pay the cost for a feature they don't use - Create a pool of specialized input `Runnable` objects to prevent spurious, unbounded `Runnable` allocations - Disable showing the boot logo for Android XR projects - Delete locale references of jni strings
* | Update the Android `fileLastModified` method to return values in seconds ↵Fredia Huya-Kouadio2024-08-152-2/+2
|/ | | | instead of milliseconds
* Fix the cleanup logic for the Android render threadFredia Huya-Kouadio2024-07-2411-36/+114
| | | | | | | | | | | | | | | On Android the exit logic goes through `Godot#onDestroy()` who attempts to cleanup the engine using the following code: ``` runOnRenderThread { GodotLib.ondestroy() forceQuit() } ``` The issue however is that by the time we ran this code, the render thread has already been paused (but not yet destroyed), and thus `GodotLib.ondestroy()` and `forceQuit()` which are scheduled on the render thread are not executed. To address this, we instead explicitly request the render thread to exit and block until it does. As part of it exit logic, the render thread has been updated to properly destroy and clean the native instance of the Godot engine, resolving the issue.
* Merge pull request #94468 from ↵Rémi Verschelde2024-07-172-2/+5
|\ | | | | | | | | | | m4gr3d/restart_editor_when_updating_touchscreen_settings [Android Editor] Resolve issues with the editor touchscreen settings
| * Disable long press for mouse eventsFredia Huya-Kouadio2024-07-172-2/+5
| | | | | | | | | | | | Long press is used to simulate right-click events for finger touch and stylus. The previous logic also caused it to trigger for mouse input, which is not needed since the user can instead use the mouse right click button. This update disables long press as right click events for mouse input.
* | Cleanup Android input on render thread settingsFredia Huya-Kouadio2024-07-093-35/+17
|/ | | | | | | Follow up to https://github.com/godotengine/godot/pull/93933 Clean up the set of settings use to control whether Android input should be dispatched on the render thread. Addresses comments in https://github.com/godotengine/godot/pull/93933#issuecomment-2210437977
* Fix ANRs reported by the Google Play ConsoleFredia Huya-Kouadio2024-07-046-122/+191
| | | | | | - Add support for dispatching input on the render thread (UI thread is the current default) when `input_buffering` and `accumulated_input` are disabled. At the expense of latency, this helps prevent 'heavy' applications / games from blocking the UI thread (the default behavior) which may cause the application to ANR. - Remove GLSurfaceView logic causing the UI thread to wait on the GL thread during lifecycle events. The removed logic would cause the UI thread to ANR when the GL thread is blocked.
* Fix crashes reported by the Google Play ConsoleFredia Huya-Kouadio2024-07-044-40/+54
|
* Merge pull request #92965 from m4gr3d/fix_splash_screenRémi Verschelde2024-06-131-1/+5
|\ | | | | | | Update the Android splash screen logic