|
251 | 251 | If no modifications are needed, then an empty [PackedByteArray] should be returned. |
252 | 252 | </description> |
253 | 253 | </method> |
| 254 | + <method name="add_apple_embedded_platform_bundle_file"> |
| 255 | + <return type="void" /> |
| 256 | + <param index="0" name="path" type="String" /> |
| 257 | + <description> |
| 258 | + Adds an Apple embedded platform bundle file from the given [param path] to the exported project. |
| 259 | + </description> |
| 260 | + </method> |
| 261 | + <method name="add_apple_embedded_platform_cpp_code"> |
| 262 | + <return type="void" /> |
| 263 | + <param index="0" name="code" type="String" /> |
| 264 | + <description> |
| 265 | + Adds C++ code to the Apple embedded platform export. The final code is created from the code appended by each active export plugin. |
| 266 | + </description> |
| 267 | + </method> |
| 268 | + <method name="add_apple_embedded_platform_embedded_framework"> |
| 269 | + <return type="void" /> |
| 270 | + <param index="0" name="path" type="String" /> |
| 271 | + <description> |
| 272 | + Adds a dynamic library (*.dylib, *.framework) to the Linking Phase in the Apple embedded platform's Xcode project and embeds it into the resulting binary. |
| 273 | + [b]Note:[/b] For static libraries (*.a), this works in the same way as [method add_apple_embedded_platform_framework]. |
| 274 | + [b]Note:[/b] This method should not be used for System libraries as they are already present on the device. |
| 275 | + </description> |
| 276 | + </method> |
| 277 | + <method name="add_apple_embedded_platform_framework"> |
| 278 | + <return type="void" /> |
| 279 | + <param index="0" name="path" type="String" /> |
| 280 | + <description> |
| 281 | + Adds a static library (*.a) or a dynamic library (*.dylib, *.framework) to the Linking Phase to the Apple embedded platform's Xcode project. |
| 282 | + </description> |
| 283 | + </method> |
| 284 | + <method name="add_apple_embedded_platform_linker_flags"> |
| 285 | + <return type="void" /> |
| 286 | + <param index="0" name="flags" type="String" /> |
| 287 | + <description> |
| 288 | + Adds linker flags for the Apple embedded platform export. |
| 289 | + </description> |
| 290 | + </method> |
| 291 | + <method name="add_apple_embedded_platform_plist_content"> |
| 292 | + <return type="void" /> |
| 293 | + <param index="0" name="plist_content" type="String" /> |
| 294 | + <description> |
| 295 | + Adds additional fields to the Apple embedded platform's project Info.plist file. |
| 296 | + </description> |
| 297 | + </method> |
| 298 | + <method name="add_apple_embedded_platform_project_static_lib"> |
| 299 | + <return type="void" /> |
| 300 | + <param index="0" name="path" type="String" /> |
| 301 | + <description> |
| 302 | + Adds a static library from the given [param path] to the Apple embedded platform project. |
| 303 | + </description> |
| 304 | + </method> |
254 | 305 | <method name="add_file"> |
255 | 306 | <return type="void" /> |
256 | 307 | <param index="0" name="path" type="String" /> |
|
262 | 313 | [param file] will not be imported, so consider using [method _customize_resource] to remap imported resources. |
263 | 314 | </description> |
264 | 315 | </method> |
265 | | - <method name="add_ios_bundle_file"> |
| 316 | + <method name="add_ios_bundle_file" deprecated="Use [method add_apple_embedded_platform_bundle_file] instead."> |
266 | 317 | <return type="void" /> |
267 | 318 | <param index="0" name="path" type="String" /> |
268 | 319 | <description> |
269 | 320 | Adds an iOS bundle file from the given [param path] to the exported project. |
270 | 321 | </description> |
271 | 322 | </method> |
272 | | - <method name="add_ios_cpp_code"> |
| 323 | + <method name="add_ios_cpp_code" deprecated="Use [method add_apple_embedded_platform_cpp_code] instead."> |
273 | 324 | <return type="void" /> |
274 | 325 | <param index="0" name="code" type="String" /> |
275 | 326 | <description> |
276 | | - Adds a C++ code to the iOS export. The final code is created from the code appended by each active export plugin. |
| 327 | + Adds C++ code to the iOS export. The final code is created from the code appended by each active export plugin. |
277 | 328 | </description> |
278 | 329 | </method> |
279 | | - <method name="add_ios_embedded_framework"> |
| 330 | + <method name="add_ios_embedded_framework" deprecated="Use [method add_apple_embedded_platform_embedded_framework] instead."> |
280 | 331 | <return type="void" /> |
281 | 332 | <param index="0" name="path" type="String" /> |
282 | 333 | <description> |
283 | 334 | Adds a dynamic library (*.dylib, *.framework) to Linking Phase in iOS's Xcode project and embeds it into resulting binary. |
284 | | - [b]Note:[/b] For static libraries (*.a) works in same way as [method add_ios_framework]. |
| 335 | + [b]Note:[/b] For static libraries (*.a), this works the in same way as [method add_apple_embedded_platform_framework]. |
285 | 336 | [b]Note:[/b] This method should not be used for System libraries as they are already present on the device. |
286 | 337 | </description> |
287 | 338 | </method> |
288 | | - <method name="add_ios_framework"> |
| 339 | + <method name="add_ios_framework" deprecated="Use [method add_apple_embedded_platform_framework] instead."> |
289 | 340 | <return type="void" /> |
290 | 341 | <param index="0" name="path" type="String" /> |
291 | 342 | <description> |
292 | | - Adds a static library (*.a) or dynamic library (*.dylib, *.framework) to Linking Phase in iOS's Xcode project. |
| 343 | + Adds a static library (*.a) or a dynamic library (*.dylib, *.framework) to the Linking Phase to the iOS Xcode project. |
293 | 344 | </description> |
294 | 345 | </method> |
295 | | - <method name="add_ios_linker_flags"> |
| 346 | + <method name="add_ios_linker_flags" deprecated="Use [method add_apple_embedded_platform_linker_flags] instead."> |
296 | 347 | <return type="void" /> |
297 | 348 | <param index="0" name="flags" type="String" /> |
298 | 349 | <description> |
299 | 350 | Adds linker flags for the iOS export. |
300 | 351 | </description> |
301 | 352 | </method> |
302 | | - <method name="add_ios_plist_content"> |
| 353 | + <method name="add_ios_plist_content" deprecated="Use [method add_apple_embedded_platform_plist_content] instead."> |
303 | 354 | <return type="void" /> |
304 | 355 | <param index="0" name="plist_content" type="String" /> |
305 | 356 | <description> |
306 | | - Adds content for iOS Property List files. |
| 357 | + Adds additional fields to the iOS project Info.plist file. |
307 | 358 | </description> |
308 | 359 | </method> |
309 | | - <method name="add_ios_project_static_lib"> |
| 360 | + <method name="add_ios_project_static_lib" deprecated="Use [method add_apple_embedded_platform_project_static_lib] instead."> |
310 | 361 | <return type="void" /> |
311 | 362 | <param index="0" name="path" type="String" /> |
312 | 363 | <description> |
313 | | - Adds a static lib from the given [param path] to the iOS project. |
| 364 | + Adds a static library from the given [param path] to the iOS project. |
314 | 365 | </description> |
315 | 366 | </method> |
316 | 367 | <method name="add_macos_plugin_file"> |
|
0 commit comments