summaryrefslogtreecommitdiffstats
path: root/platform/android/java
Commit message (Collapse)AuthorAgeFilesLines
* Android: Extension support for native file dialogAnish Mishra2024-11-191-3/+43
|
* Merge pull request #99123 from tygyh/Update-vulnerable-pluginsThaddeus Crews2024-11-131-1/+1
|\ | | | | | | Update JavaScript/Java plugins to solve known vulnerabilities
| * Update JavaScript/Java plugins to solve known vulnerabilitiesDr. Dystopia2024-11-121-1/+1
| | | | | | | | Done using the Snyk tool.
* | 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.
* | | Android: Update exported app and editor themeAnish Mishra2024-11-082-2/+5
| |/ |/|
* | Merge pull request #97631 from m4gr3d/prompt_apk_install_after_generationThaddeus Crews2024-11-045-9/+31
|\ \ | | | | | | | | | [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-285-9/+31
| | |
* | | 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.
* / | [Android] Implement native file picker supportAnish Mishra2024-10-304-0/+248
|/ /
* | 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 Android app permissions for SDK levels earlier than 28Andreas Raddau2024-10-161-3/+3
|/
* [DisplayServer] Implement has_hardware_keyboard method for Android and iOS.bruvzg2024-10-022-1/+9
|
* Add logic to automatically pick up jar/aar library dependencies in the ↵Fredia Huya-Kouadio2024-09-292-0/+11
| | | | `res://addons` directory
* 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
|
* Update the set of excluded permissions for the XR EditorFredia Huya-Kouadio2024-09-252-3/+3
| | | | A few permissions including the `USE_SCENE` permission are being renamed with the launch of the Meta Spatial SDK, so we update the excluded list to avoid requesting them on app start.
* Style: Apply new `clang-format` changesThaddeus Crews2024-09-201-1/+1
|
* C#: Fallback to CoreCLR/MonoVM hosting APIs when hostfxr/NativeAOT failsRaul Santos2024-09-164-14/+89
| | | | | | | | Some platforms don't support hostfxr but we can use the coreclr/monosgen library directly to initialize the runtime. Android exports now use the `android` runtime identifier instead of `linux-bionic`, this removes the restrictions we previously had: - Adds support for all Android architectures (arm32, arm64, x32, and x64), previously only the 64-bit architectures were supported. - Loads `System.Security.Cryptography.Native.Android` (the .NET library that binds to the Android OS crypto functions).
* Update the Android editor flavors to avoid vendor-specific referencesFredia Huya-Kouadio2024-09-139-27/+31
|
* Merge pull request #96742 from m4gr3d/check_openxr_automatic_permissions_requestRémi Verschelde2024-09-122-7/+12
|\ | | | | | | [Android editor] Limit when OpenXR runtime permissions are requested
| * Only request OpenXR permissions for a XR game running off the Android editor ↵Fredia Huya-Kouadio2024-09-112-7/+12
| | | | | | | | when the `xr/openxr/extensions/automatically_request_runtime_permissions` project setting is enabled
* | Disable some editor settings by default in the XR Editordevloglogan2024-09-094-0/+29
|/
* Improve support for XR projectsFredia Huya-Kouadio2024-09-0618-79/+556
|
* Update the options for launching the Play window in PiP modeFredia Huya-Kouadio2024-08-302-7/+19
|
* Merge pull request #96208 from m4gr3d/cleanup_immersive_logicRémi Verschelde2024-08-304-52/+96
|\ | | | | | | Restore fullscreen toggle menu for the Android editor and clean up the immersive mode logic
| * Restore 'Toggle fullscreen' menu for the Android editor and clean up the ↵Fredia Huya-Kouadio2024-08-284-52/+96
| | | | | | | | immersive mode logic
* | Merge pull request #96254 from raulsntos/android/keyStore.isEmpty()Rémi Verschelde2024-08-291-1/+1
|\ \ | |/ |/| | | [Android] Check if `keyStore` path is empty
| * [Android] Check if keyStore path is emptyRaul Santos2024-08-281-1/+1
| | | | | | | | In `godot-build-scripts`, the default `config.sh` sets `GODOT_ANDROID_SIGN_KEYSTORE` to an empty string but we were only checking if it's null.
* | Add support for launching the Play window in PiP modeFredia Huya-Kouadio2024-08-2821-53/+548
| |
* | Add support to the Android editor for signing and verifying Android apksFredia Huya-Kouadio2024-08-26123-0/+31164
| | | | | | | | - 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-267-15/+86
| | | | | | | | | | | | 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
* | Merge pull request #95586 from m4gr3d/fix_last_modified_time_unitRémi Verschelde2024-08-162-2/+2
|\ \ | | | | | | | | | Update the Android `fileLastModified` method to return values in seconds instead of milliseconds
| * | Update the Android `fileLastModified` method to return values in seconds ↵Fredia Huya-Kouadio2024-08-152-2/+2
| | | | | | | | | | | | instead of milliseconds
* | | Merge pull request #91271 from m4gr3d/clean_gradle_build_setupRémi Verschelde2024-08-163-212/+104
|\ \ \ | |/ / |/| | | | | Clean up the gradle build logic used to generate the Godot Android binaries
| * | Clean up the build commands used by the editor for gradle buildsFredia Huya-Kouadio2024-05-312-57/+27
| | |
| * | Clean up the gradle build logic used to generate the Godot Android binariesFredia Huya-Kouadio2024-05-311-155/+77
| | |
* | | Merge pull request #92859 from Summersay415/do-not-stripRémi Verschelde2024-07-281-1/+1
|\ \ \ | |_|/ |/| | | | | Android: Change the way `doNotStrip` is set
| * | Change the way doNotStrip is setSummersay4152024-06-171-1/+1
| | |