summaryrefslogtreecommitdiffstats
path: root/platform/android/SCsub
Commit message (Collapse)AuthorAgeFilesLines
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Fix the `generate_apk` logic when `dev_build` or `debug_symbols` are enabledFredia Huya-Kouadio2024-07-291-19/+12
| | | | Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* Update pre-commit hooks configuration to use `ruff` instead of `black`Jakub Marcowski2024-05-211-1/+2
|
* Merge pull request #91339 from TCROC/windows-apk-build-fixRémi Verschelde2024-05-011-4/+16
|\ | | | | | | Fix for Android build on Windows
| * added fix for android build on windowsTravis Lange2024-04-291-4/+16
| |
* | SCons: Colorize warnings/errors during generationThaddeus Crews2024-04-281-1/+2
|/
* Finish splitting functionality of the Vulkan and D3D12 backends into ↵Dario2024-02-121-1/+1
| | | | RenderingDeviceDriver.
* Add `generate_apk=yes` to generate an APK after buildingHugo Locurcio2023-12-131-0/+28
| | | | | | | | | This is useful to speed up iteration when working on the engine (or editor). This can be combined with a script that calls `adb` to deploy the APK on a device (coupled with Godot's `--export-*` for projects) to further speed up iteration.
* Style: Harmonize header includes in platform portsRémi Verschelde2023-06-081-1/+1
| | | | | | | | | | | | | | | | 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.
* Update the gradle build tasks to generate play store builds.Fredia Huya-Kouadio2023-04-271-1/+4
| | | | Configure the gradle builds to sign and build the release version of the Godot Android Editor
* Fix the gradle build configuration for the Android platform following ↵Fredia Huya-Kouadio2022-10-051-3/+3
| | | | https://github.com/godotengine/godot/pull/66242
* SCons: Unify tools/target build type configurationRémi Verschelde2022-09-261-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements https://github.com/godotengine/godot-proposals/issues/3371. New `target` presets ==================== The `tools` option is removed and `target` changes to use three new presets, which match the builds users are familiar with. These targets control the default optimization level and enable editor-specific and debugging code: - `editor`: Replaces `tools=yes target=release_debug`. * Defines: `TOOLS_ENABLED`, `DEBUG_ENABLED`, `-O2`/`/O2` - `template_debug`: Replaces `tools=no target=release_debug`. * Defines: `DEBUG_ENABLED`, `-O2`/`/O2` - `template_release`: Replaces `tools=no target=release`. * Defines: `-O3`/`/O2` New `dev_build` option ====================== The previous `target=debug` is now replaced by a separate `dev_build=yes` option, which can be used in combination with either of the three targets, and changes the following: - `dev_build`: Defines `DEV_ENABLED`, disables optimization (`-O0`/`/0d`), enables generating debug symbols, does not define `NDEBUG` so `assert()` works in thirdparty libraries, adds a `.dev` suffix to the binary name. Note: Unlike previously, `dev_build` defaults to off so that users who compile Godot from source get an optimized and small build by default. Engine contributors should now set `dev_build=yes` in their build scripts or IDE configuration manually. Changed binary names ==================== The name of generated binaries and object files are changed too, to follow this format: `godot.<platform>.<target>[.dev][.double].<arch>[.<extra_suffix>][.<ext>]` For example: - `godot.linuxbsd.editor.dev.arm64` - `godot.windows.template_release.double.x86_64.mono.exe` Be sure to update your links/scripts/IDE config accordingly. More flexible `optimize` and `debug_symbols` options ==================================================== The optimization level and whether to generate debug symbols can be further specified with the `optimize` and `debug_symbols` options. So the default values listed above for the various `target` and `dev_build` combinations are indicative and can be replaced when compiling, e.g.: `scons p=linuxbsd target=template_debug dev_build=yes optimize=debug` will make a "debug" export template with dev-only code enabled, `-Og` optimization level for GCC/Clang, and debug symbols. Perfect for debugging complex crashes at runtime in an exported project.
* Unify bits, arch, and android_arch into env["arch"]Aaron Franke2022-08-251-4/+4
| | | | | | 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-0/+1
| | | | | 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.
* Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and ↵bruvzg2022-04-281-0/+1
| | | | | | Windows. Implement TextServer word break method.
* Android port of the Godot EditorFredy Huya-Kouadio2022-03-281-2/+9
| | | | | | | 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>
* Include the `godot_plugin_jni.cpp` file into the `platform/android/SCsub` fileFredia Huya-Kouadio2022-01-261-0/+1
| | | | This should resolve https://github.com/godotengine/godot/issues/57209
* Switch to input buffering on AndroidPedro J. Estébanez2021-08-131-0/+1
| | | | | | | | | | Key, touch and joystick events will be passed directly from the UI thread to Godot, so they can benefit from agile input flushing. As another consequence of this new way of passing events, less Java object are created at runtime (`Runnable`), which is good since the garbage collector needs to run less. `AndroidInputHandler` is introduced to have a smaller cross-thread surface. `main_loop_request_go_back()` is removed in favor just inline calling `send_window_event()` at the most caller's convenience (i.e., leveraging the new `p_deferred`` parameter as appropriate). Lastly, `get_mouse_position()` and `get_mouse_button_state()` now just call through `Input` to avoid the need of sync of mouse data tracked on the UI thread.
* Remove unused AudioDriverAndroid from AndroidMarcel Admiraal2021-06-101-1/+0
|
* SCons: Add explicit dependencies on thirdparty code in cloned envRémi Verschelde2020-12-181-1/+5
| | | | | | | | | | | | | | Since we clone the environments to build thirdparty code, we don't get an explicit dependency on the build objects produced by that environment. So when we update thirdparty code, Godot code using it is not necessarily rebuilt (I think it is for changed headers, but not for changed .c/.cpp files), which can lead to an invalid compilation output (linking old Godot .o files with a newer, potentially ABI breaking version of thirdparty code). This was only seen as really problematic with bullet updates (leading to crashes when rebuilding Godot after a bullet update without cleaning .o files), but it's safer to fix it everywhere, even if it's a LOT of hacky boilerplate.
* Remove unused FileAccessJAndroid.Fabio Alessandrelli2020-12-091-1/+0
|
* Android: Allow Mouse Capture thebestnom2020-12-081-0/+1
|
* Display Server supportPouleyKetchoupp2020-04-081-2/+2
|
* Vulkan rendering for AndroidPouleyKetchoupp2020-04-031-1/+1
|
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-301-36/+40
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* Removed unused code in android detect.py and SCsubunknown2020-03-181-3/+0
|
* Re-architecture of the Godot Android plugin.fhuya2020-03-051-1/+2
|
* Provides a base implementation of the Vulkan surface view (VkSurfaceView.kt) ↵fhuya2020-03-051-1/+2
| | | | | | and its accompanying components. The implementation is meant to be extended and updated in order to integrate it with the existing Godot java and native codebase.
* Miscellaneous cleanup for the Android codebase:fhuya2020-03-041-0/+2
| | | | | | | | - update gradle plugins versions - add formatting rules for AndroidManifest and gradle build files - cleanup java_godot_lib_jni Note: logic was mostly moved around and no new logic/functionality was added.
* Remove incomplete battery status/power APIRémi Verschelde2020-02-141-1/+0
| | | | | | | | | | | It was initially implemented in #5871 for Godot 3.0, but never really completed or thoroughly tested for most platforms. It then stayed in limbo and nobody seems really keen to finish it, so it's better to remove it in 4.0, and re-add eventually (possibly with a different API) if there's demand and an implementation confirmed working on all platforms. Closes #8770.
* Add Android NetSocket implementation.Fabio Alessandrelli2019-12-141-0/+1
| | | | Automatically acquire and release multicast lock when needed.
* Split the Android platform java logic into an Android library module (`lib`) ↵fhuya2019-09-041-23/+1
| | | | | | 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').
* SCons: Generate android_source.zip during buildRémi Verschelde2019-08-291-0/+22
| | | | | This is now needed after #27781, as this android_source.zip template is used for custom Android builds from the editor.
* Android: Style fixes to manifest and build.gradleRémi Verschelde2019-08-271-5/+4
|
* Android: Drop support for NDK < r15Rémi Verschelde2019-07-301-4/+3
| | | | | | NDK r15c was released over two years ago (July 2017), and we cannot build against r14b anyway as it seems to fail with our setup to link the STL.
* Removed an unused commitunknown2019-07-201-1/+0
|
* SCons: Use CPPDEFINES instead of CPPFLAGS for pre-processor definesRémi Verschelde2019-07-031-2/+0
| | | | | | | | It's the recommended way to set those, and is more portable (automatically prepends -D for GCC/Clang and /D for MSVC). We still use CPPFLAGS for some pre-processor flags which are not defines.
* Deprecate armv6 support for Androidfhuya2019-06-191-3/+1
|
* Android now (optionally) builds the template when exportingJuan Linietsky2019-04-071-108/+0
| | | | | Added new way to create add-ons Removed old way to create add-ons
* Remove unused importsHendrikto2019-04-061-1/+0
|
* Restructuring glue code to make it easier to extendBastiaan Olij2019-04-051-1/+3
|
* Android: Add support for x86_64 architectureRémi Verschelde2019-01-161-0/+2
| | | | | | | Like arm64v8, this is only supported by API 21 and later, so we enforce 21 as min API for x86_64. Part of #25030.
* Android: Better identify thirdparty C/C++ codeRémi Verschelde2018-12-201-10/+1
| | | | | | | | | | | | | | | | | | | - The `cpu-features.{c,h}` code was only used by chance by the webm (libvpx) code, so I moved it there. It was actually introduced before that and wasn't in use, and libvpx just happened to be able to compile thanks to it being bundled. It could potentially be compiled on the fly from the Android NDK, but since we plan to replace the webm module by a GDNative plugin in the near future, I went the bundling route. - `ifaddrs_android.h` is already provided in the Android NDK as `ifaddrs.h`, same as on other Unixes. Yet we cannot use it until we up the min API level to 24, where `getifaddrs` is first defined. I moved the files to `thirdparty/misc` and synced them with upstream WebRTC (only indentation changes and removal of `static` qualifiers). Also removes dropped thirdparty files from COPYRIGHT.txt after changes in #24105 and #24145.
* Fix lint error/warning while building android templatevolzhs2018-12-181-1/+1
|
* Remove obsolete ANDROID_NATIVE_ACTIVITYBastiaan Olij2018-12-021-3/+0
|
* Fix warnings in Android platformRémi Verschelde2018-10-031-3/+11
| | | | | | | | | | | | | | | | | | | | | Fixes the following Clang 7 warnings: ``` platform/android/os_android.h:240:16: warning: 'OS_Android::native_video_play' hides overloaded virtual function [-Woverloaded-virtual] platform/android/os_android.h:241:15: warning: 'OS_Android::native_video_is_playing' hides overloaded virtual function [-Woverloaded-virtual] platform/android/audio_driver_opensl.cpp:104:3: warning: suggest braces around initialization of subobject [-Wmissing-braces] platform/android/audio_driver_opensl.cpp:129:10: warning: unused variable 'numOutputs' [-Wunused-variable] platform/android/audio_driver_opensl.cpp:130:11: warning: unused variable 'deviceID' [-Wunused-variable] platform/android/java_glue.cpp:795:10: warning: unused variable 'clsio' [-Wunused-variable] platform/android/java_glue.cpp:890:12: warning: unused variable 'gob' [-Wunused-variable] platform/android/java_glue.cpp:592:13: warning: unused variable 'resized' [-Wunused-variable] platform/android/java_glue.cpp:593:13: warning: unused variable 'resized_reload' [-Wunused-variable] modules/mobile_vr/mobile_vr_interface.cpp:401:8: warning: unused variable 'aspect_ratio' [-Wunused-variable] drivers/unix/dir_access_unix.cpp:394:2: warning: THIS IS BROKEN [-W#warnings] ```
* SCons: Build thirdparty code in own env, disable warningsRémi Verschelde2018-09-281-7/+3
| | | | | Also remove unnecessary `Export('env')` in other SCsubs, Export should only be used when exporting *new* objects.
* add support libc++_shared stl on androidRidwan Abdul Hafidh2018-08-231-0/+6
|
* added 'android_add_asset_dir('...') method to Android module gradle build configPatrick Kaster2018-07-051-1/+4
| | | | (cherry picked from commit 9190ae2be7068c8a84f60766a2f7c1da3e0bcd4b)
* Properly closing all files in Python codeViktor Ferenczi2018-03-111-10/+10
|