fransyozef commented on issue #338: support for creating Xcode9 style 
exportOptions.plist 
URL: https://github.com/apache/cordova-ios/pull/338#issuecomment-337622799
 
 
   I finally got it to work. So I added the build.json in my root project 
folder. 
   
   My build.json 
   
   > {
   >     "ios": {
   >         "debug": {
   >             "codeSignIdentity": "iPhone Developer",
   >             "developmentTeam": "XXXXXXXX",
   >             "packageType": "development",
   >             "provisioningProfile": 
"XXXXXXXX-XXXXXXXX-XXXXXXXX-XXXXXXXX-XXXXXXXX",
   >             "iCloudContainerEnvironment": "Development",
   >             "buildFlag": [
   >                 "EMBEDDED_CONTENT_CONTAINS_SWIFT = YES",
   >                 "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO",
   >                 "LD_RUNPATH_SEARCH_PATHS = \"@executable_path/Frameworks\""
   >             ]
   >         },
   >         "release": {
   >             "codeSignIdentity": "iPhone Developer",
   >             "developmentTeam": "XXXXXXXX",
   >             "packageType": "app-store",
   >             "iCloudContainerEnvironment": "Production",
   >             "buildFlag": [
   >                 "EMBEDDED_CONTENT_CONTAINS_SWIFT = YES",
   >                 "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO",
   >                 "LD_RUNPATH_SEARCH_PATHS = \"@executable_path/Frameworks\""
   >             ]
   >         }
   >     }
   > }
   
   At first my cordova build ios did not worked. So I added the buildconfig 
flag :
   
   > cordova build ios --debug --buildConfig build.json
   
   But after a correct compile, I just used
   
   > ionic cordova build ios
   
   and now it just works
   
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cordova.apache.org
For additional commands, e-mail: commits-h...@cordova.apache.org

Reply via email to