summaryrefslogtreecommitdiffstats
path: root/platform/android/plugin
Commit message (Collapse)AuthorAgeFilesLines
* Include the `godot_plugin_jni.cpp` file into the `platform/android/SCsub` fileFredia Huya-Kouadio2022-01-261-1/+1
| | | | This should resolve https://github.com/godotengine/godot/issues/57209
* Update copyright statements to 2022Rémi Verschelde2022-01-032-4/+4
| | | | Happy new year to the wonderful Godot community!
* Split android platform export template into multiple filesSergey Minakov2021-08-121-269/+0
|
* Optimize StringName usagereduz2021-07-181-1/+1
| | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor.
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-1/+1
|
* Merge pull request #49279 from Calinou/rename-string-is-abs-path-methodRémi Verschelde2021-06-111-1/+1
|\ | | | | Rename `String.is_abs_path()` to `String.is_absolute_path()`
| * Rename `String.is_abs_path()` to `String.is_absolute_path()`Hugo Locurcio2021-06-031-1/+1
| | | | | | | | This is more consistent with `NodePath.is_absolute()`.
* | Style: Cleanup uses of double spaces between wordsRémi Verschelde2021-06-071-2/+2
|/ | | | | Or after punctuation. Tried to leave third-party stuff alone, unless it has been heavily modified for Godot.
* Expose GodotPlugin's utility methods used for registration and signal emitting.Fredia Huya-Kouadio2021-02-152-10/+10
| | | | This enables creation and use of a plugin like class by composition rather than inheritance.
* [Plugins] Rename 'PluginConfig' struct to platform specific nameSergey Minakov2021-01-151-50/+51
|
* Update copyright statements to 2021Rémi Verschelde2021-01-013-6/+6
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-9/+9
|
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-072-5/+5
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Remove GodotPayment android pluginTimo Schwarzer2020-06-221-11/+12
| | | | | This is now available in a separate repository at https://github.com/godotengine/godot-google-play-billing
* Merge pull request #39080 from m4gr3d/fix_emit_signalRémi Verschelde2020-05-271-2/+4
|\ | | | | Use compile-time constant for the size of the signal parameters
| * Use compile-time constant for the size of the signal parametersFredia Huya-Kouadio2020-05-271-2/+4
| |
* | Merge pull request #39050 from timoschwarzer/google-play-billing-4.0Rémi Verschelde2020-05-261-1/+1
|\ \ | | | | | | (4.0) Re-implement GodotPayment Android plugin using the Google Play Billing library
| * | Re-implement GodotPayment Android plugin using the Google Play Billing libraryTimo Schwarzer2020-05-251-1/+1
| | |
* | | Merge pull request #38996 from mbrlabs/android-plugin-fixRémi Verschelde2020-05-251-0/+16
|\ \ \ | |_|/ |/| | Perform a clean Gradle build if android plugins changed
| * | Perform a clean Gradle build if android plugins changedMarcus Brummer2020-05-251-0/+16
| |/ | | | | | | Fixes #38986
* / Fix parameters passing when emitting signalFredia Huya-Kouadio2020-05-251-2/+3
|/ | | | The issue was caused because we were using variables local to the `for` loop block.
* Implementation of the Godot Android Plugin configuration fileFredia Huya-Kouadio2020-05-171-0/+251
|
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-6/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Add signal support to Godot Android plugin:fhuya2020-04-102-1/+49
| | | | Supports registering and emitting signal from a Godot Android plugin
* Re-architecture of the Godot Android plugin.fhuya2020-03-052-0/+158