# UnityXprojectTools **Repository Path**: core-bell/UnityXprojectTools ## Basic Information - **Project Name**: UnityXprojectTools - **Description**: No description available - **Primary Language**: C# - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-07-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # UnityXprojectTools #### 介绍 null #### 软件架构 Plist文件解析 #### 使用说明 // 修改Info.plist文件 ``` string plistPath = Path.Combine(pathToBuiltProject, "Info.plist"); PlistDoc doc = PlistParse.parseFromFile(plistPath); //remove节点 doc.removeNode("UIApplicationExitsOnSuspend"); //string doc.SetString("NSRemindersUsageDescription", "需要您的同意,才能访问提醒事项"); //integer doc.SetInteger("CFBundleVersion", 10); //array格式 PlistNode arrayNode = doc.getNode("CFBundleIconFiles"); arrayNode.arrayValue[0].SetString("icon_0"); //dict格式 PlistNode dictNode = doc.getNode("NSAppTransportSecurity"); dictNode.dictValue["NSAllowsArbitraryLoads"].SetBool(true); //保存 doc.savePlistWithPath(plistPath); ``` #### 码云特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)这里输入代码