I want to build an App on Appflow as Cordova Project, but its beeing detected as Capacitor Project, can you tell me how I can change it? I only used “ionic integrations add cordova” and “ionic integrations disable capacitor”
Check to make sure you don’t have a capacitor.config.json
file in your app root, and also check ionic.config.json
and ensure you have:
{
"integrations": {
"cordova": {}
}
}
Also ensure there are no capacitor dependencies in package.json
or package-lock.json
Hey, sorry for the late answer. I tried to delete the capacitor.config.json file and all worked fine.