Ionic Creator onto an Apple Device using a Mac
Create your app on Ionic Creator website ( https://creator.ionic.io )
Use the export to download the ZIP file.
Drop to Terminal.
Move to your development folder.
If you are using the YouTube in Creator, add <allow-navigation href="*://*.youtube.com/*"> after <access origin="*"> in config.xml to include iFrames for YouTube videos.
Use the export to download the ZIP file.
Drop to Terminal.
Move to your development folder.
ionic start --v1 [project name]
cd [project name]
mv www www.org
mkdir www
cd www
unzip [ionic export.zip] .
mv ../scss/ionic.app.scss ../scss/ionic.app.scss.org
cp SCSS-MOVEME/ionic.app.scss ../scss/ionic.app.scss
cd ..
npm installnpm install @ionic/cloud-angular --save
cp node_modules/@ionic/cloud/dist/bundle/ionic.cloud.min.js www/lib
cp [Splash Screen.png] resources/splash.png
cp [App Icon.png] resources/icon.png
ionic resources --icon
ionic resources --splash
If you are using the YouTube in Creator, add <allow-navigation href="*://*.youtube.com/*"> after <access origin="*"> in config.xml to include iFrames for YouTube videos.
ionic serve
ionic emulate ios
open platforms/ios/[project name].xcodeproj/