Skip to content

Commit 4054d7b

Browse files
committed
Replaced deprecated EditorExportPlugin function calls
1 parent 61d57d9 commit 4054d7b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

addon/DeeplinkPlugin.gd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,16 +193,16 @@ class IosExportPlugin extends EditorExportPlugin:
193193

194194
# Add custom schemes to pList
195195
if not __custom_schemes.is_empty():
196-
add_ios_plist_content(CUSTOM_SCHEME_PLIST_ENTRY % [get_option("application/bundle_identifier"), __custom_schemes])
196+
add_apple_embedded_platform_plist_content(CUSTOM_SCHEME_PLIST_ENTRY % [get_option("application/bundle_identifier"), __custom_schemes])
197197

198198
for __framework in IOS_FRAMEWORKS:
199-
add_ios_framework(__framework)
199+
add_apple_embedded_platform_framework(__framework)
200200

201201
for __framework in IOS_EMBEDDED_FRAMEWORKS:
202-
add_ios_embedded_framework(__framework)
202+
add_apple_embedded_platform_embedded_framework(__framework)
203203

204204
for __flag in IOS_LINKER_FLAGS:
205-
add_ios_linker_flags(__flag)
205+
add_apple_embedded_platform_linker_flags(__flag)
206206

207207

208208
func _export_end() -> void:

0 commit comments

Comments
 (0)