ollm commented on pull request #956:
URL: https://github.com/apache/cordova-ios/pull/956#issuecomment-1020004212


   Yes, I still use them to display images in push notifications
   
   First I recommend that you check if the two or more profiles appear in the 
file `./projectName/platforms/ios/exportOptions.plist` after build, I build 
using the command line like this `cordova build ios --device --realese 
--buildConfig build.json`.
   
   Like this:
   ``` xml
   <?xml version="1.0" encoding="UTF-8"?>
   <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" 
"http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
   <plist version="1.0">
     <dict>
       <key>compileBitcode</key>
       <false/>
       <key>method</key>
       <string>app-store</string>
       <key>iCloudContainerEnvironment</key>
       <string>Production</string>
       <key>teamID</key>
       <string>XXXXXX</string>
       <key>provisioningProfiles</key>
       <dict>
         <key>app.package.name</key>
         <string>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</string>
         <key>app.package.name.NotificationService</key>
         <string>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</string>
       </dict>
       <key>signingStyle</key>
       <string>manual</string>
       <key>signingCertificate</key>
       <string>iPhone Distribution</string>
     </dict>
   </plist>
   ```
   
   If the profiles don't appear, open the files 
`./projectName/platforms/ios/cordova/lib/build.js` and 
`./projectName/platforms/ios/cordova/build` and check that the @HarelM changes 
are present, if they are not you can edit these same files manually or 
reinstall the `cordova-ios` fork.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to