I have created a blank cordova app, but the problem is that the project is empty, it only has dependencies. Can any one help me?
creating blank cordova app
440 views Asked by fateme At
2
There are 2 answers
0
pavelety
On
Try to use Visual Studio as code editor, not builder.
Building project is only need for compile apk for device (android).
cordova build android
No need to build simple project with index.html and JS files while developing. Just run:
cordova platform add browser
cordova run browser
PS: try Ionic-framework it's based on cordova.
Related Questions in CORDOVA
- how to get rid of the cordova screen when you open the app
- How to build a codesandbox project to android apk?
- Cordova Android run failed
- Cordova Build issue since version 12.0.0
- cordova-background-geolocation-plugin don't giving any response in cordova android app
- provider duplicate while compiling a Cordova application for the Android platform
- Detect clickable areas within <img> tag in Ionic project
- Whitelisting Ionic app in Salesforce Org for CORS/CSP
- gradle keeps failing. Cordova run. Vscode
- Cordova plugin splashscreen issue while Azure Devops with ant build using android-cordova application
- Ionic 3 issue while generating AAB file
- Xcode Undefined symbols, Linker command failed with exit code 1 (use -v to see invocation)
- Xcode 15.3 build failed
- Samsung screen zoom ruining my cordova built android app
- command: ionic server Killed 9
Related Questions in VISUAL-STUDIO-2015
- Migrate Old VS 2015 .suo file to the New VS 2022 DocumentLayout.json
- Visual Studio write to Office 365 word
- timestamp(6) oracle datatype issue while loading the data from one Oracle table to another using SSIS
- BIML to create multiple projects in a single solution
- Is there a possibility to Checkout all git Branches of one solution at the same time?
- Warning of installing redistrubatble in Visual Studio 2015
- How add conditional Instalation Targets in manifest file in Visual studio
- How can I access the summary information of a dll file installed in the GAC directory?
- CMake failed to check C++ compiler with Visual Studio 2015
- Local Reports in Visual Studio 2022
- Where is the location of cl.exe of VS2015 msvc build tool (v140) in VS2022
- "Stop debugger when browser window is closed" is missing in Visual Studio 2015
- Visual Studio 2015 is crashing after modify and save EDMX changes on the development system
- Bug in debug mode in Visual Studio 2015, which depends on the file size
- Visual Studio 2015 cannot update program database (error C2471)
Related Questions in HYBRID-MOBILE-APP
- Keypad open and closes and couldn't type in few android phones on my flutter app
- How to set 'compileDebugKotlin' task target to Java 17
- how to fix Failed to load FirebaseOptions from resource. Check that you have defined values.xml
- react native system compatibility issues
- Flutter publising playstore error(soLoader)
- Cordova plugin purchase not able to register product
- Is Flutter http.MultipartRequest support boolean?
- Can we create an app maker like flutter flow using flutter
- Cordova InAppBrowser performance issue on Android
- how can i programatically move the carousel to the next item in react-native-reanimated-carousel?
- React Native Android - Execution failed for task ':app:compileDebugJavaWithJavac'
- Architecture for white-label mobile apps with React Native
- PackageAndroidArtifact$IncrementalSplitterRunnable
- I want to make a tasbeeh counter in flutter, button image is not maintaining its position when screen size is changing
- native to flutter navigation is very slow for the first time
Related Questions in VISUAL-STUDIO-CORDOVA
- Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0, Gradle v7.6 is only installed and required
- How to enable auto imports while creating Cordova Plugin
- error display when I run 'cordova run android' command
- Cordova could not load API for android project
- Connecting to node.js backend using Cordova
- Getting apksigner error - MIN_SIG_SCHEME_FOR_TARGET_SDK_NOT_MET while uploading apk file in Google Play store
- Share image to Facebook using Cordova SocialSharing plugin with link attached
- Ionic cordova build error with platforms errors [[ERROR] An error occurred while running subprocess cordova.]
- can import React, but not useState?
- Error: Type CodePush does not have 'ɵmod' property
- Visual Studio Code Apache Cordova Debugging Using Android Emulator
- Build failed with CMD line --ionic cordova build android
- Getting white-screen on emulator using cordova
- Running Android emulator from Ionic
- How to configure Content Security Policy and whitelist plugin for cordova to fetch local files
Related Questions in TACO
- How to use the OAuth boilerplate in WDC 3.0?
- ERROR: Could not build wheels for tokenizers, which is required to install pyproject.toml-based projects
- Tableau WDC 3.0 for Json files
- TACO CLI - failing to build on MAC (missing write access)
- No Java files found that extend CordovaActivity
- Visual Studio 2017 cannot send code to Mac using Taco Remotebuild
- How to fix missing write access error when using remotebuild with cordova ios?
- How add some source code in a UWP installed app?
- Visual Studio Tools for Cordova, Xcode 10 & emulators
- MAC: NPM installs modules globally but commands can't be found
- VS Cordova projects won;t debug on IOS device
- creating blank cordova app
- Cordova build TACO(vs-tac) issue
- Taco roadmap - Update 11 with Cordova 7 support
- I'm using Cordova (VS TACO) and want to access Node.js OS methods but receive "require is not defined"
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

Not sure what Visual Studio Code did here, but you can always create and adapt a Hello World app by running
cordova create hello com.example.hello HelloWorld. Make sure you have npm installed, then run