About Store Forum Documentation Contact



Post Reply 
Xcode export command to create Project.pak
Author Message
takashi Offline
Member

Post: #1
Xcode export command to create Project.pak
Hi,

I tried to export Xcode project by command as follows.
Edit.EditorInterface.exportApp(Edit.EXPORT_XCODE);
However, Project.pak wasn't create.

On the other hand, Android export command
Edit.EditorInterface.exportApp(Edit.EXPORT_ANDROID);
successfully creates Project.pak.

So, I cannot automate iOS build in Jenkins.
Can you make Xcode export command to create Project.pak?

Thanks in advance,
Takashi
07-08-2016 02:31 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Xcode export command to create Project.pak
Hi,

I'll try to make this available soon.
07-10-2016 02:06 PM
Find all posts by this user Quote this message in a reply
takashi Offline
Member

Post: #3
RE: Xcode export command to create Project.pak
Thanks!

I forgot to say that I need EditorInterface functions to do Code Synchronization Import and Export, too.
07-11-2016 02:45 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #4
RE: Xcode export command to create Project.pak
Hi,

I've just added this for you.

When calling EditorInterface.exportApp the project will be exported instantly, however the project data will only be started and it may be finished some seconds later.

By that I mean, that when you call EditorInterface.exportApp, and the function returns true, it means that xcodeproj file is ready, however the Project Data Export may not be finished yet, but still may take some time to finish.

Is that an issue?
07-11-2016 08:33 AM
Find all posts by this user Quote this message in a reply
takashi Offline
Member

Post: #5
RE: Xcode export command to create Project.pak
OK. I understand what's happening.

I prefer EditorInterface.exportApp returns when project data export has been completed. Otherwise, I want a function which waits until project data export completes.
07-11-2016 09:07 AM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #6
RE: Xcode export command to create Project.pak
I've added necessary change, it should be OK now.
07-11-2016 10:14 AM
Find all posts by this user Quote this message in a reply
Post Reply