Eine aktuelle Version von Node.js ist erforderlich.
Ionic und Cordova via npm installieren:
npm install -g ionic cordova
Dependencies installieren und ausführen:
cd IoT_ready_App/
npm install
ionic serve
Alle Testskripte sind in der package.json scripts-Sektion definiert. Sie können wie folgt ausgeführt werden:
//Tests kontinuierlich im Hintergrund auswerten
npm run test
//Tests einmalig ausführen
npm run test-ci
//Tests mit Coverage ausführen (legt einen Ordner coverage mit einem HTML-Report an)
npm run test-coverage
//Lint durchführen
npm run lint
ionic cordova build ios
Erzeugt den Ordner /platforms/ios in dem sich ein XCode-Projekt für das Installieren der App auf einem iOS-Gerät befindet.
Für das produktive Build:
ionic cordova build ios --prod --release --minifyjs --minifycss --optimizejs
Vorraussetzungen: Mac-System mit installiertem XCode, via USB angeschlossenes Gerät z.B. iPad, entsprechendes Zertifikat
- Den beim Bauen erstellten /platforms/ios-Ordner auf das Mac-System kopieren
- Die .xcodeproj-Datei im /platforms/ios-Ordner mit XCode öffnen
- Zertifikat auswählen
- Gerät als Build-Target auswählen (z.B. iPad Pro)
- App ausführen
Vorraussetzungen: Mac-System mit installiertem XCode, entsprechendes Zertifikat
- Den beim Bauen erstellten /platforms/ios-Ordner auf das Mac-System kopieren
- Die .xcodeproj-Datei im /platforms/ios-Ordner mit XCode öffnen
- Zertifikat auswählen (falls danach eine Fehlermeldung bezüglich "automatic managed signing" auftritt, diese Checkbox nochmal weg-und anklicken)
- Generic iOS device als Build-Target auswählen
- Product -> Archive -> Upload to App Store -> den Anweisungen folgen und ggf. bestätigen -> Upload
1."Missing Provisioning Profile :Apps must contain a provisioning profile in a file named embedded.mobileprovision"
Lösung: You can switch out the build system under file > workspace settings (or project settings) and then select Legacy Build System under Build System. (https://stackoverflow.com/questions/52426643/missing-provisioning-profile-apps-must-contain-a-provisioning-profile-in-a-file).
2."Invalid App Store Icon. The App Store Icon in the asset catalog in ... can't be transparent nor contain an alpha channel"
Lösung: Copy and Paste the App Store icon to the desktop . Open the image. Click File Menu->Duplicate. Save it by unticking the Alpha channel. Replace the current App Store icon with this one. Validate and upload.(https://stackoverflow.com/questions/46585809/error-itms-90717-invalid-app-store-icon/47264220#47264220).
Dann neue icons mit dem Mustericon(ohne Alpha-Channel) erzeugen mit:
ionic cordova resources ios
Sollten z.B. nach einem Git Clone nicht alle Plugins in das iOS-Build übernommen werden, kann es helfen den platforms
und den plugins
Ordner komplett zu löschen und erneut zu bauen:
rm -r platforms
rm -r plugins
ionic cordova build ios
Nach dem ersten Auschecken oder bei Änderungen an der app-settings.json ist ein cordova prepare ios
nötig. Achtung: ionic cordova prepare ios
scheint nicht zu funktionieren.
Nach einem frischen Checkout kann man auch beides kombinieren:
rm -r platforms
rm -r plugins
ionic cordova build ios
cordova prepare ios