Ce document liste toutes les informations nécessaires afin de soumettre rapidement une application iOS sur iTunesConnect pour:
- Une nouvelle application
- Une mise à jour d'application
"schematics": { | |
"@schematics/angular:application": { | |
"strict": true | |
}, | |
"@schematics/angular:component": { | |
"standalone": true, | |
"inlineStyle": true, | |
"inlineTemplate": true, | |
"changeDetection": "OnPush" | |
}, |
#!/usr/bin/env node | |
import {writeFile} from 'fs/promises'; | |
import {Blob} from 'node:buffer'; | |
import fetch from 'node-fetch'; | |
const fetchData = async (url) => { | |
const response = await fetch(url); |
async toggle() { | |
if (!this._playerModal) { | |
const { PlayerModalComponent } = await import( '../player-modal/player-modal.component'); | |
this._playerModal = PlayerModalComponent; | |
} | |
const modalInstance = await this.modalCtrl.create({ | |
component: this._playerModal, | |
swipeToClose: true, | |
cssClass: 'full-modal', | |
}); |