Reputation: 531
I have been given the task to maintain a cordova based app having both iOS and Android version. There are two separate repositories provided to me, i.e. one for iOS and one for Android.
Since, it is cordova based app, I am planning to convert it into one single repository and having both iOS and Android under platforms folder. Though I am not sure if there is any downside of converting this into one repository OR is there any advantage of keeping separate repositories for Android and iOS for a cordova based app. Please advice.Thanks in advance.
Upvotes: 0
Views: 178
Reputation: 2460
All files you will work on will reside in the main www
folder inside the root project folder. When you use commands like cordova build ios
, this copies all the files from your www
folder into their respective platforms/ios or platforms/android. So yes, if you support both the iOS and Android platforms, you should see both of those folders in the platforms
folder, but you should never work in those folders
Upvotes: 1