android - Should I put the Ionic Platforms folder into source control? -
i building mobile app using ionic framework, , had added ios , android platforms. need regularly update ios xcode project think should put platforms folder git source control. after added them, found many issues occur git, path long, etc.
but if don't add platforms folder git source control, there risks if re-add platform need update information again inside xcode.
how guys manage
final solution:
not put
platform
folder git source control because make source big , cause errors suchpath long
.configure
config.xml
file under ionic app root folder xcode project updated automatically. example:
specially notice id, version, name, description, etc., configuration values. these configured, don't need update xcode project manually more.
<?xml version="1.0" encoding="utf-8" standalone="yes"?> <widget id="com.diankeda.huaquanquan" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> <name>画圈圈</name> <description> 美丽改变生活。 </description> ...
Comments
Post a Comment