summaryrefslogtreecommitdiffstats
path: root/platform/android/os_android.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-0/+3
|\
| * Android: `OS.create_instance()` should return `-1` on failureDavid Snopek2024-11-251-0/+3
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* Update the `GodotHost` interface to support signing and verifying Android apksFredia Huya-Kouadio2024-08-261-0/+10
| | | | | | 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.
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-2/+2
| | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* Implement `amplitude` to Input.vibrate_handheldRadiant2024-05-021-2/+2
| | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: m4gr3d <m4gr3d@users.noreply.github.com>
* Merge pull request #90710 from m4gr3d/fix_jstring_leaksRémi Verschelde2024-04-221-0/+4
|\ | | | | | | Fix leakage of JNI object references
| * Fix leakage of JNI object referencesFredia Huya-Kouadio2024-04-151-0/+4
| | | | | | | | Fixes https://github.com/godotengine/godot/issues/87548
* | Collapse the gdextension arguments into the `GDExtensionData` structFredia Huya-Kouadio2024-04-191-4/+4
| | | | | | | | This is used to reduce the number of arguments to `OS::open_dynamic_library(...)`.
* | Fix loading GDExtension dependencies on AndroidFredia Huya-Kouadio2024-04-191-14/+54
|/
* Add renaming of PDB files to avoid blocking themDmitriySalnikov2024-04-051-1/+1
|
* Add const lvalue ref to core/* container parametersMuller-Castro2024-02-141-2/+2
|
* Enhance mobile suspend MainLoop NotificationsZach Coleman2024-02-041-0/+6
|
* Revert https://github.com/godotengine/godot/pull/86682 for the Android ↵Fredia Huya-Kouadio2024-01-041-2/+0
| | | | platform as it breaks dynamic library loading
* Distinguishs between dynamic library not found and can't be opened.Daylily-Zeleen2024-01-011-0/+2
|
* Improve engine startup/shutdown benchmarksYuri Sizov2023-12-081-4/+4
| | | | | | | | | - Add contexts to give a better sense of benchmarked areas. - Add missing benchmarks and adjust some begin/end points. - Clean up names. - Improve Android's internal benchmarks in a similar manner. Co-authored-by: Fredia Huya-Kouadio <fhuya@meta.com>
* Fix some typos in source.emacser02023-10-041-3/+3
|
* Add support for the OpenXR Eye gaze interaction extensionBastiaan Olij2023-10-021-0/+5
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* Extract ScriptInstance to simplify includesYuri Sizov2023-09-061-0/+1
| | | | | | | | | This allows to include script_instance.h directly in the generated gdvirtual.gen.inc, and remove excessive includes from the codebase. This should also allow Resource to use GDVIRTUAL macros, which wasn't possible previously due to a circular dependency.
* Godot Android plugin re-architectureFredia Huya-Kouadio2023-09-031-0/+41
|
* Fix formatting of dlopen error message on WindowsKamil Brzoskowski2023-07-091-1/+1
| | | | | | And harmonize the format for all platforms. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Style: Harmonize header includes in platform portsRémi Verschelde2023-06-081-9/+8
| | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module should be included with relative paths (relative to the root folder of the modular component, e.g. `platform/linuxbsd/`), in their own section before Godot's "core" includes. The `api` and `export` subfolders also need to be handled as self-contained (and thus use relative paths for their "local" includes) as they are all compiled for each editor platform, without necessarily having the api/export matching platform folder in the include path. E.g. the Linux editor build will compile `platform/android/{api,export}/*.cpp` and those need to use relative includes for it to work.
* Merge pull request #65902 from MJacred/editor/copysysteminfoYuri Sizov2023-05-271-5/+5
|\ | | | | Add an editor option to copy system info to clipboard
| * Copy system info to clipboard + Update bug_report.ymlMJacred2023-05-271-5/+5
| | | | | | | | | | | | | | | | plus minor static-related fixes * linuxbsd: get_systemd_os_release_info_value() -> static breaks usage if used multiple times * windows/linuxbsd: get_video_adapter_driver_info() writes info into static * linuxbsd: get_distribution_name() + get_version() -> write bsd fallback into static variable * windows/uwp/android: remove unnecessary use of static
* | Improve startup benchmarkingFredia Huya-Kouadio2023-05-231-0/+21
|/ | | | Move the benchmarking measuring methods from `Engine` to `OS` to allow for platform specific overrides (e.g: can be used to hook into platform specific benchmarking and tracing capabilities).
* [TLS] Add support for platform-specific CA bundles.Fabio Alessandrelli2023-05-121-0/+4
| | | | | | | | | | | | | | | | | Adds a new OS::get_system_ca_certs method which can be implemented by platforms to retrieve the list of trusted CA certificates using OS specific APIs. The function should return the certificates in PEM format, and is currently implemented for Windows/macOS/LinuxBSD(*)/Android. mbedTLS will fall back to bundled certificates when the OS returns no certificates. (*) LinuxBSD does not have a standardized certificates store location. The current implementation will test for common locations and may return an empty string on some distributions (falling back to the bundled certificates).
* Redo how the remote filesystem worksJuan Linietsky2023-05-081-1/+15
| | | | | | | | | Instead of reading files over the network, the new version uses a local file cache and only updates files when it changes. The original remote filesystem was created 14 years ago, when ethernet was faster than hard drives or even flash. Also, mobile devices have a very small amount of storage. Nowadays, this is no longer the case so the approach is changed to using a persistent cache in the target device. Co-authored-by: m4gr3d
* Fix the issue causing the Godot Android Editor to crash when returning from ↵Fredia Huya-Kouadio2023-01-261-1/+11
| | | | | | | the launched and running game The issue was caused because the running game pid was not set, and thus had a value of `0`. When trying to stop the running game, the `EditorRun::stop()` logic would kill the process with pid 0, which on Android corresponds to the running app's own process, thus causing the editor to crash. This issue did not happen on Godot 3 because pid with value of `0` are not considered valid.
* Update the logic to calculate the screen scale on AndroidFredia Huya-Kouadio2023-01-221-2/+2
| | | | Takes into account the ratio between the screen size and the default window dimensions.
* [GDExtension] Expose some low level functions and String operators.bruvzg2023-01-191-8/+8
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Use system fonts as fallback and improve system font handling.bruvzg2022-12-041-0/+226
| | | | | | | Add support for font weight and stretch selection when using system fonts. Add function to get system fallback font from a font name, style, text, and language code. Implement system font support for Android. Use system fonts as a last resort fallback.
* Enable GLES3 on Androidclayjohn2022-11-291-1/+0
| | | | | | | | | | Add necessary build flags and switch from using a GLES2 context to a GLES3 one. This also enables building for OpenXR Co-authored-by: m4gr3d <fhuyakou@gmail.com> Co-authored-by: dsnopek <dsnopek@gmail.com>
* Add missing display server overridesFredia Huya-Kouadio2022-11-271-1/+5
| | | | Improves the base functionality for the Android platform and helps reduce the amount of spurious error logs emitted.
* [Android] Fix GDExtension export and loading.bruvzg2022-11-081-2/+7
|
* Add get_distribution_name() and get_version() to OSMJacred2022-09-161-0/+74
| | | | | | supports: LinuxBSD, Windows, macOS, iOS, Android, UWP Co-authored-by: bruvzg
* Rename String `plus_file` to `path_join`Aaron Franke2022-08-291-1/+1
|
* Unify bits, arch, and android_arch into env["arch"]Aaron Franke2022-08-251-3/+3
| | | | | | Fully removes the `bits` option and adapts the code that relied on it. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Add full support for Android scoped storage.Fredia Huya-Kouadio2022-07-051-2/+30
| | | | | This was done by refactoring directory and file access handling for the Android platform so that any general filesystem access type go through the Android layer. This allows us to validate whether the access is unrestricted, or whether it falls under scoped storage and thus act appropriately.
* Cleanup Android C++ codeMarcel Admiraal2022-05-311-6/+3
|
* Add GDNativeInterface::get_library_path to GDExtensionEmmanuel Leblond2022-04-291-1/+6
|
* Merge pull request #59979 from bruvzg/cpp_check2Rémi Verschelde2022-04-271-1/+1
|\
| * Fix more issues found by cppcheck.bruvzg2022-04-201-1/+1
| |
* | Fix the issue causing the screen to be black after resuming when in low ↵Fredy Huya-Kouadio2022-04-251-1/+2
|/ | | | | | processor mode. This is done by forcing a redraw and buffers swap when resuming the app.
* Fix flickering issues with low processor mode on AndroidFredia Huya-Kouadio2022-03-291-2/+9
|
* Android port of the Godot EditorFredy Huya-Kouadio2022-03-281-0/+54
| | | | | | | These set of changes focus primarily on getting the core logic and overall Godot Editor UI and functionality up and running natively on Android devices. UI tweaks / cleanup / polish, as well configuration for Android specific functionality / restrictions will be addressed in follow-up PRs iteratively based on feedback. Co-authored-by: thebestnom <shoval.arad@gmail.com>
* Style: Cleanup single-line blocks, semicolons, dead codeRémi Verschelde2022-02-161-11/+19
| | | | | Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-091-7/+7
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings