| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| | |
Update JavaScript/Java plugins to solve known vulnerabilities
|
| |
| |
| |
| | |
Done using the Snyk tool.
|
|\ \
| | |
| | |
| | |
| | |
| | | |
m4gr3d/disable_swappy_requirement_for_as_debug_builds
Update the `production` build argument for Android Studio debug builds
|
| | |
| | |
| | |
| | |
| | | |
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 editor] Enable automatic install of exported apks for the Android editor
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
[Android] Implement support for accent color retrieval
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Fix splash screen upside down on Android
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|/ / |
|
|\ \
| | |
| | |
| | | |
Fix fallbacks to OpenGL
|
| |/ |
|
|\ \
| | |
| | |
| | | |
[Android] Implement native input dialog support
|
| |/ |
|
|\ \
| |/
|/| |
Add Swappy & Pre-Transformed Swapchain
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- 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.
|
|/ |
|
| |
|
|
|
|
| |
`res://addons` directory
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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")
```
|
| |
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
| |
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).
|
| |
|
|\
| |
| |
| | |
[Android editor] Limit when OpenXR runtime permissions are requested
|
| |
| |
| |
| | |
when the `xr/openxr/extensions/automatically_request_runtime_permissions` project setting is enabled
|
|/ |
|
| |
|
| |
|
|\
| |
| |
| | |
Restore fullscreen toggle menu for the Android editor and clean up the immersive mode logic
|
| |
| |
| |
| | |
immersive mode logic
|
|\ \
| |/
|/|
| | |
[Android] Check if `keyStore` path is empty
|
| |
| |
| |
| | |
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.
|
| | |
|
| |
| |
| |
| | |
- Apk signing and verification is enabled using the apksig library from https://android.googlesource.com/platform/tools/apksig/+/ac5cbb07d87cc342fcf07715857a812305d69888
|
| |
| |
| |
| |
| |
| | |
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.
|
|/
|
|
| |
contents with the `assets:/` prefix
|
|\
| |
| |
| |
| |
| | |
m4gr3d/memory_allocation_cleanup_and_optimizations
Android memory cleanup and optimizations
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- 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 instead of milliseconds
|
| | |
| | |
| | |
| | | |
instead of milliseconds
|
|\ \ \
| |/ /
|/| |
| | | |
Clean up the gradle build logic used to generate the Godot Android binaries
|
| | | |
|
| | | |
|
|\ \ \
| |_|/
|/| |
| | | |
Android: Change the way `doNotStrip` is set
|
| | | |
|