How make cordova projects in commad prompt in more details
1) Create App (Create project)
cordova create Quranfolder com.mds.Quran "Quran"
2) cd Quranfolder
3) (Then add the Android platform with the following command in the Command Prompt (cmd).)
cordova platform add android
4) command for adding plugin
cordova plugin add com.admob.plugin
5) (Build and compile the app)
cordova build android
6) (Then you can run it (or add it to Eclipse or Android Studio).)
Phonegap
1) Create App (Create project)
phonegap create c:\Phonegapprj\HelloWorld
2) Install plugins
phonegap local plugin add <git-url> Replace <git-url> with the addresses
3) Build project
phonegap build android
phonegap build windows
More Informations
If you want to see which plugins have been added, execute the following commands.
cordova plugin list
phonegap local plugin list
Removing plugins
If you need to remove any plugins (be specific!) execute the following commands in Git Shell (installed with GitHub)
Commands in CLI:
cordova plugin remove org.apache.cordova.<plugin name>
phonegap local plugin remove org.apache.cordova.<plugin name>
Replace <plugin name> with a name above (replace also the < and >)
Build and compile the app
Make the build with the following command (in Command Prompt).
cordova build android (it does a prepare and compile command in one)
phonegap local build android
BUILD for windows
phonegap build windows
phonegap create c:\Phonegapprj\Iphone
Build and compile the app
Make the build with the following command (in Command Prompt).
cordova build android (it does a prepare and compile command in one)
phonegap local build android
Then you can run it (or add it to Eclipse or Android Studio).
cordova emulate android
phonegap local run android
All the sources should be ready now and you can start using PhoneGap and building your app.
cordova create Quranfolder com.mds.Quran "Quran"
2) cd Quranfolder
3) (Then add the Android platform with the following command in the Command Prompt (cmd).)
cordova platform add android
4) command for adding plugin
cordova plugin add com.admob.plugin
5) (Build and compile the app)
cordova build android
6) (Then you can run it (or add it to Eclipse or Android Studio).)
Phonegap
1) Create App (Create project)
phonegap create c:\Phonegapprj\HelloWorld
2) Install plugins
phonegap local plugin add <git-url> Replace <git-url> with the addresses
3) Build project
phonegap build android
phonegap build windows
More Informations
If you want to see which plugins have been added, execute the following commands.
cordova plugin list
phonegap local plugin list
Removing plugins
If you need to remove any plugins (be specific!) execute the following commands in Git Shell (installed with GitHub)
Commands in CLI:
cordova plugin remove org.apache.cordova.<plugin name>
phonegap local plugin remove org.apache.cordova.<plugin name>
Replace <plugin name> with a name above (replace also the < and >)
Build and compile the app
Make the build with the following command (in Command Prompt).
cordova build android (it does a prepare and compile command in one)
phonegap local build android
BUILD for windows
phonegap build windows
phonegap create c:\Phonegapprj\Iphone
Build and compile the app
Make the build with the following command (in Command Prompt).
cordova build android (it does a prepare and compile command in one)
phonegap local build android
Then you can run it (or add it to Eclipse or Android Studio).
cordova emulate android
phonegap local run android
All the sources should be ready now and you can start using PhoneGap and building your app.