446 commandes partagées

Ta mémoire technique
collaborative

Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.

CodeBox
446 Commandes
22 Développeurs
99 Technologies

55 résultat(s) pour "ui"

Génère des source maps pour le débogage.

bash
ng build --source-map

Installe et configure Angular Material UI.

bash
ng add @angular/material

Analyse la taille du bundle avec webpack-bundle-analyzer.

bash
npm install -g webpack-bundle-analyzer && ng build --stats-json && npx webpack-bundle-analyzer dist/nom-projet/stats.json

Compile un APK Android en mode debug.

bash
flutter build apk --debug

Compile un APK Android signé pour la production.

bash
flutter build apk --release

Génère des APKs séparés par architecture CPU pour réduire la taille.

bash
flutter build apk --split-per-abi

Compile un Android App Bundle pour le Play Store.

bash
flutter build appbundle

Compile un AAB signé optimisé pour le Play Store.

bash
flutter build appbundle --release

Compile l'application iOS pour la production.

bash
flutter build ios --release
Flutter Build IPA

Compile un fichier IPA pour l'App Store.

bash
flutter build ipa