Faksprod commented on issue #1355: URL: https://github.com/apache/cordova-android/issues/1355#issuecomment-925905847
@harivenkatesh-id One thing I like to do when I'm facing this kind of issue, is to restart from a very simple and clean app. Trying to debug my app which become more complex years after years is a nightmare. What I suggest: create a new Cordova app with the config and version you need to use. ```CLI cordova create testApp cd testApp cordova platform add android cordoba prepare ``` Do not add any plugins (except the one automatically added when adding platform with cordova CLI). Add platform you need with version you want. Build this very simple app without adding any lines of codes and test it. If it works on the config you want, you know the problem is somewhere in your current app plugin/code. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
