Heim > Artikel > Web-Frontend > Cordova-Grundbefehle
1. Zuerst herunterladen install node.js
Geben Sie node -v in die Eingabeaufforderung ein und die Versionsnummer wird angezeigt, um zu beweisen, dass die Installation erfolgreich war
2. cordova global installieren:
npm install -g cordova
Geben Sie cordova -v in die Eingabeaufforderung ein, um die Version zu überprüfen Nummer zum Nachweis der erfolgreichen Installation
3.创建APP
cordova create hello com.example.hello HelloWorld
Ergebnis:
4. Geben Sie das Projekt ein
cd hello
5. Sehen Sie sich die auf dieser Maschine installierte Plattform an
cordova platforms list
Ergebnis:
6. Plattformunterstützung zum Projekt hinzufügen
cordova platform add android
Zum Beispiel füge ich jetzt Unterstützung für die Android-Plattform zum Projekt hinzu
Das Ergebnis:
Natürlich können Sie auch Unterstützung für andere Plattformen hinzufügen, sofern Sie über diese Maschine verfügen.
In 5 haben wir überprüft, welche Plattformen unterstützt werden, und diese nach Bedarf hinzugefügt
cordova platform add amazon-fireos cordova platform add android cordova platform add blackberry10 cordova platform add browser cordova platform add firefoxos cordova platform add webos cordova platform add windows cordova platform add wp8
7. Cordova-Plugin hinzufügen
Für Cordova 5.0+ und höher ist dies möglich Plugins direkt hinzufügen
cordova plugin add cordova-hot-code-push-plugin
Ergebnis:
Oder direkt über die Repo-URL installieren (instabil)
cordova plugin add https://github.com/nordnet/cordova-hot-code-push.git
Oder Lokales Plug-in installieren
cordova plugin add E:\project\plugins\cordova-hot-code-push-local-dev-addon
8. Vom Projekt installierte Plug-ins anzeigen
cordova plugin list
Ergebnis:
9.Löschen Sie das Plug-in
cordova plugin remove cordova-hot-code-push-plugin
Ergebnis:
10. Entfernen Sie die Plattformunterstützung
cordova platform remove android
11. Projekt kompilieren
cordova build android
他会在 platforms/android/bin/ 下已经生成了 apk 文件
Oder starten Sie die virtuelle Android-Maschine:
cordova emulate android
Führen Sie das App-Projekt aus (in der virtuellen Maschine oder auf der realen Maschine). ):
cordova run android
12. Installieren Sie die angegebene Version von Cordova
install -g cordova@3.1.0-0.2.0
13. Sehen Sie sich die Liste der installierten Plug-Ins und Umgebungsversionen an
cordova info
Ergebnis:
14. Cordova Alle Befehle anzeigen
cordova help
15. Installieren Sie das Plug-in mit der angegebenen Versionsnummer
cordova plugin add cordova-plugin-device@1.1.4
16. Neu kompilieren
cordova emulate
<br>
Das obige ist der detaillierte Inhalt vonCordova-Grundbefehle. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!