public static void OnPostProcessBuild(BuildTarget target, string pathToBuiltProject) { if (target != BuildTarget.iOS) { Debug.LogWarning("Target is not iPhone. XCodePostProcess will not run"); return; } #region 写入Plist Debug.Log("Run mine ----------------------------------------------------------------- "); //修改工程文件 内容 //string projPath = PBXProject.GetPBXProjectPath(path); //PBXProject proj = new PBXProject(); //proj.ReadFromString(File.ReadAllText(projPath)); //string target = proj.TargetGuidByName("Unity-iPhone"); // add extra framework(s) 添加额外的Framework //proj.AddFrameworkToProject(target, "AssetsLibrary.framework", false); // set code sign identity & provisioning profile 设置证书签名等 //proj.SetBuildProperty(target, "CODE_SIGN_IDENTITY", "iPhone Distribution: _______________"); //proj.SetBuildProperty(target, "PROVISIONING_PROFILE", "********-****-****-****-************"); // rewrite to file //File.WriteAllText(projPath, proj.WriteToString()); //修改Info.plist // Get plist // Get root //读取配置文件 // string _path = Application.dataPath + // "/PTGameData/Editor/config_ptgame/ptconfig_XCodePermission.xml"; // XmlDocument xmlDoc = new XmlDocument(); // xmlDoc.Load(_path); // //获取Config的所有子节点 // XmlNodeList nodeList = xmlDoc.SelectSingleNode("Config").ChildNodes; // foreach (XmlElement _xmlele in nodeList) // { // if (_xmlele.GetAttribute("Choose") == "True") // { // // rootDict.SetString(_xmlele.GetAttribute("PermissionKey"), _xmlele.GetAttribute("DescriptionString")); // } // } // PlistElementDict _https = rootDict.CreateDict ("NSAppTransportSecurity"); // _https.SetBoolean ("NSAllowsArbitraryLoads",true); // Change value of CFBundleDevelopmentRegion in Xcode plist //设置语言为中文 //rootDict.SetString("CFBundleDevelopmentRegion", "zh_CN"); //PlistElementArray urlTypes = rootDict.CreateArray("CFBundleURLTypes"); // add weixin url scheme //PlistElementDict wxUrl = urlTypes.AddDict(); //wxUrl.SetString("CFBundleTypeRole", "Editor"); //wxUrl.SetString("CFBundleURLName", "weixin"); //PlistElementArray wxUrlScheme = wxUrl.CreateArray("CFBundleURLSchemes"); //wxUrlScheme.AddString("____________"); // Write to file // File.WriteAllText(plistPath, plist.WriteToString()); string plistPath = pathToBuiltProject + "/Info.Plist"; Dictionary <string, object> dict = (Dictionary <string, object>)PlistCS.Plist.readPlist(plistPath); dict["LSHasLocalizedDisplayName"] = true; PlistCS.Plist.writeXml(dict, plistPath); #endregion string strPermissionName = EditorPrefs.GetString(PermissionDesEditorWindow.StrPermissionName, ""); Debug.Log(strPermissionName); if (strPermissionName.EndsWith(",")) { strPermissionName = strPermissionName.Remove(strPermissionName.Length - 1); } Debug.Log(strPermissionName); string[] strPermissionIndexes = strPermissionName.Split(','); int[] permissionIndexes = new int[strPermissionIndexes.Length]; for (int i = 0; i < permissionIndexes.Length; i++) { permissionIndexes [i] = int.Parse(strPermissionIndexes [i]); } #region 生成资源文件 // Create a new project object from build target XCProject project = new XCProject(pathToBuiltProject); var variantGroup = project.variantGroups; var rootGroup = project.rootGroup; var buildFiles = project.buildFiles; var resourcesBuildPhases = project.resourcesBuildPhases; var variant = new PBXVariantGroup("InfoPlist.strings", null, "GROUP"); // mark variants variantGroup.Add(variant); // add variant to project rootGroup.AddChild(variant); // add variant in build process var appNameConfigData = AppNameConfigData.Load(); Dictionary <string, string> language = new Dictionary <string, string> (); foreach (var languageData in appNameConfigData.SupportedLanguageItems) { language.Add(appNameConfigData.LanguageDefiOS [languageData.Index], languageData.AppName); } // English en french fr foreach (KeyValuePair <string, string> entry in language) { string folder = project.projectRootPath + "/" + entry.Key + ".lproj"; if (!Directory.Exists(folder)) { Directory.CreateDirectory(folder); } string filePath = folder + "/InfoPlist.strings"; string content = "\"CFBundleDisplayName\" = \"" + entry.Value + "\";\n"; List <PermissionDescription> permissionDescriptions = GetLanguagePermissionDescriptions(entry.Key, permissionIndexes); foreach (PermissionDescription permissionDescription in permissionDescriptions) { content += "\"" + permissionDescription.PermissionName + "\" = \"" + permissionDescription.Description + "\";\n"; } File.WriteAllText(filePath, content); var result = project.AddFile(filePath, (PBXGroup)variant, "SOURCE_ROOT", true, false); // var result = project.AddFile(filePath,"", (PBXGroup)variant,"SOURCE_ROOT", true, false); string firstKey = ""; foreach (KeyValuePair <string, object> resultEntry in result) { firstKey = resultEntry.Key; break; } PBXFileReference fileReference = (PBXFileReference)result[firstKey]; fileReference.Remove("name"); fileReference.Add("name", entry.Key); PBXBuildFile buildFile = new PBXBuildFile(fileReference); buildFiles.Add(buildFile); } project.Save(); #endregion }
public static void OnPostProcessBuild(BuildTarget target, string pathToBuiltProject) { if (target != BuildTarget.iOS) { Debug.LogWarning("Target is not iPhone. XCodePostProcess will not run"); return; } #region 写入Plist Debug.Log("Run mine ----------------------------------------------------------------- "); string plistPath = pathToBuiltProject + "/Info.Plist"; Dictionary <string, object> dict = (Dictionary <string, object>)PlistCS.Plist.readPlist(plistPath); dict["LSHasLocalizedDisplayName"] = true; PlistCS.Plist.writeXml(dict, plistPath); #endregion var permissionConfig = PermissionDesEditorWindow.Load(); string strPermissionName = ""; if (null == permissionConfig || string.IsNullOrEmpty(permissionConfig.SelectedStamp)) { } else { strPermissionName = permissionConfig.SelectedStamp; } Debug.Log(strPermissionName); if (strPermissionName.EndsWith(",")) { strPermissionName = strPermissionName.Remove(strPermissionName.Length - 1); } Debug.Log(strPermissionName); string[] strPermissionIndexes = strPermissionName.Split(','); List <int> permissionList = new List <int> (); for (int i = 0; i < strPermissionIndexes.Length; i++) { if (!string.IsNullOrEmpty(strPermissionIndexes [i])) { permissionList.Add(int.Parse(strPermissionIndexes [i])); } } int[] permissionIndexes = permissionList.ToArray(); #region 生成资源文件 // Create a new project object from build target XCProject project = new XCProject(pathToBuiltProject); var variantGroup = project.variantGroups; var rootGroup = project.rootGroup; var buildFiles = project.buildFiles; var resourcesBuildPhases = project.resourcesBuildPhases; var variant = new PBXVariantGroup("InfoPlist.strings", null, "GROUP"); // mark variants variantGroup.Add(variant); // add variant to project rootGroup.AddChild(variant); // add variant in build process var appNameConfigData = AppNameConfigData.Load(); Dictionary <string, string> language = new Dictionary <string, string> (); foreach (var languageData in appNameConfigData.SupportedLanguageItems) { language.Add(appNameConfigData.LanguageDefiOS [languageData.Index], languageData.AppName); } // English en french fr foreach (KeyValuePair <string, string> entry in language) { string folder = project.projectRootPath + "/" + entry.Key + ".lproj"; if (!Directory.Exists(folder)) { Directory.CreateDirectory(folder); } string filePath = folder + "/InfoPlist.strings"; string content = "\"CFBundleDisplayName\" = \"" + entry.Value + "\";\n"; List <PermissionDescription> permissionDescriptions = GetLanguagePermissionDescriptions(entry.Key, permissionIndexes); foreach (PermissionDescription permissionDescription in permissionDescriptions) { content += "\"" + permissionDescription.PermissionName + "\" = \"" + permissionDescription.Description + "\";\n"; } File.WriteAllText(filePath, content); var result = project.AddFile(filePath, (PBXGroup)variant, "SOURCE_ROOT", true, false); string firstKey = ""; foreach (KeyValuePair <string, object> resultEntry in result) { firstKey = resultEntry.Key; break; } PBXFileReference fileReference = (PBXFileReference)result[firstKey]; fileReference.Remove("name"); fileReference.Add("name", entry.Key); PBXBuildFile buildFile = new PBXBuildFile(fileReference); buildFiles.Add(buildFile); } project.Save(); #endregion }
public static string AddNewFileReference(IIgorModule ModuleInst, string ProjectPath, string Filename, TreeEnum TreeBase, string Path = "", int FileEncoding = -1, string LastKnownFileType = "", string Name = "") { if (IgorAssert.EnsureTrue(ModuleInst, Directory.Exists(ProjectPath), "XCodeProj doesn't exist at path " + ProjectPath)) { XCProject CurrentProject = new XCProject(ProjectPath); CurrentProject.Backup(); foreach (KeyValuePair <string, PBXFileReference> CurrentFileRef in CurrentProject.fileReferences) { if (CurrentFileRef.Value.name == Filename) { IgorDebug.Log(ModuleInst, "The file " + Filename + " is already referenced in the XCodeProj."); return(CurrentFileRef.Value.guid); } } PBXFileReference NewFile = new PBXFileReference(Filename, TreeBase); if (Path != "") { if (NewFile.ContainsKey("path")) { NewFile.Remove("path"); } NewFile.Add("path", Path); } if (FileEncoding != -1) { if (NewFile.ContainsKey("fileEncoding")) { NewFile.Remove("fileEncoding"); } NewFile.Add("fileEncoding", FileEncoding); } if (LastKnownFileType != "") { if (NewFile.ContainsKey("lastKnownFileType")) { NewFile.Remove("lastKnownFileType"); } NewFile.Add("lastKnownFileType", LastKnownFileType); } if (Name != "") { if (NewFile.ContainsKey("name")) { NewFile.Remove("name"); } NewFile.Add("name", Name); } CurrentProject.fileReferences.Add(NewFile); IgorDebug.Log(ModuleInst, "File " + Filename + " has been added to the XCodeProj."); CurrentProject.Save(); return(NewFile.guid); } return(""); }