To fix missing provisioning profiles when running ionic build ios run the following command to copy the profiles to the correct directory for ionic.
sudo cp -r ~/Library/MobileDevice/ /Library/MobileDevice/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| StringWriter writer = new StringWriter(); | |
| IOUtils.copy(stream, writer, "UTF-8"); | |
| String theString = writer.toString(); |
OlderNewer