com.puzzlescapegames.services 1.3.6 → 1.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,6 +37,17 @@ namespace PuzzlescapeGames.Services.Editor
37
37
  rootDict.SetString( "NSAdvertisingAttributionReportEndpoint ", "https://appsflyer-skadnetwork.com/" );
38
38
 
39
39
  File.WriteAllText( plistPath, plist.WriteToString() );
40
+
41
+
42
+ //Disabling ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES Unity Framework target
43
+ string projectPath = path + "/Unity-iPhone.xcodeproj/project.pbxproj";
44
+ PBXProject pbxProject = new PBXProject();
45
+ pbxProject.ReadFromFile( projectPath );
46
+
47
+ string target = pbxProject.GetUnityFrameworkTargetGuid();
48
+ pbxProject.SetBuildProperty( target, "ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES", "NO" );
49
+
50
+ pbxProject.WriteToFile( projectPath );
40
51
  }
41
52
  }
42
53
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name" : "com.puzzlescapegames.services",
3
3
  "displayName" : "Puzzlescape Games Services",
4
- "version" : "1.3.6",
4
+ "version" : "1.3.7",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {