Merge pull request #103173 from m4gr3d/fix_prebuilt_manifest_config

Updates and fixes to the Android prebuilt export logic
This commit is contained in:
Rémi Verschelde 2025-03-28 14:31:57 +01:00
commit e9d827b440
No known key found for this signature in database
GPG key ID: C3336907360768E1
11 changed files with 268 additions and 162 deletions

View file

@ -241,6 +241,16 @@
Return [code]true[/code] if the plugin supports the given [param platform].
</description>
</method>
<method name="_update_android_prebuilt_manifest" qualifiers="virtual const">
<return type="PackedByteArray" />
<param index="0" name="platform" type="EditorExportPlatform" />
<param index="1" name="manifest_data" type="PackedByteArray" />
<description>
Provide access to the Android prebuilt manifest and allows the plugin to modify it if needed.
Implementers of this virtual method should take the binary manifest data from [param manifest_data], copy it, modify it, and then return it with the modifications.
If no modifications are needed, then an empty [PackedByteArray] should be returned.
</description>
</method>
<method name="add_file">
<return type="void" />
<param index="0" name="path" type="String" />