Is it good practice to manually modify files on platforms?

I have a new Cordova project that has 2 platforms for Windows 8 and Android.

I was wondering if it is correct to manually modify files inside platforms/after they have been generated with cordova build?

+3
source share
1 answer

It is good practice to modify files in the root of the project, and not in the platform folders.

The idea is to have common code for all platforms.

To have html / js for the platform, you can use a folder merges, and you can also use hooks for special settings.

, - ( cordova 3.3), , , , AndroidManifest.xml, .

www- , , cordova build cordova prepare www ( cordova plugin add ).

+3

All Articles