[U] Sync n3
This commit is contained in:
@@ -55,6 +55,14 @@ namespace tysdk.editor
|
||||
File.WriteAllText(mainAppPath, newContent);
|
||||
}
|
||||
|
||||
private static void ProceeFirebasePlist(string target, PBXProject proj, string root)
|
||||
{
|
||||
var plistPath = Path.Combine("Packages/tysdk/Files", "GoogleService-Info.plist");
|
||||
File.Copy(plistPath, $"{root}/GoogleService-Info.plist", true);
|
||||
var plistGuid = proj.AddFile("GoogleService-Info.plist", "GoogleService-Info.plist", PBXSourceTree.Source);
|
||||
proj.AddFileToBuild(target, plistGuid);
|
||||
}
|
||||
|
||||
private static void XCodeSetSigingAndCapbilities(string target, PBXProject proj, string root)
|
||||
{
|
||||
var entitlementsContent = File.ReadAllText("Packages/tysdk/Files/Unity-iPhone.entitlements");
|
||||
@@ -66,14 +74,6 @@ namespace tysdk.editor
|
||||
//proj.AddCapability(target, PBXCapabilityType.AssociatedDomains, "Unity-iPhone/Unity-iPhone.entitlements");
|
||||
}
|
||||
|
||||
private static void ProceeFirebasePlist(string target, PBXProject proj, string root)
|
||||
{
|
||||
var plistPath = Path.Combine("Packages/tysdk/Files", "GoogleService-Info.plist");
|
||||
File.Copy(plistPath, $"{root}/GoogleService-Info.plist", true);
|
||||
var plistGuid = proj.AddFile("GoogleService-Info.plist", "GoogleService-Info.plist", PBXSourceTree.Source);
|
||||
proj.AddFileToBuild(target, plistGuid);
|
||||
}
|
||||
|
||||
private static void ProcessBuildSettings(PBXProject proj)
|
||||
{
|
||||
string target = proj.TargetGuidByName("GameAssembly");
|
||||
|
||||
Reference in New Issue
Block a user