com.puzzlescapegames.services 1.2.5 → 1.2.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.
@@ -76,6 +76,7 @@ namespace PuzzlescapeGames.Services.Editor
76
76
  ENABLED_AMPLITUDE = 1 << 1,
77
77
  ENABLED_FIREBASE = 1 << 2,
78
78
  UNITASK_DOTWEEN_SUPPORT = 1 << 4,
79
+ ENABLED_XCODE_INFO_PLIST = 1 << 8,
79
80
  ALL = ~0,
80
81
  }
81
82
  }
@@ -1,4 +1,4 @@
1
- #if UNITY_IPHONE || UNITY_IOS
1
+ #if (UNITY_IPHONE || UNITY_IOS) && ENABLED_XCODE_INFO_PLIST
2
2
  using System.IO;
3
3
  using UnityEditor;
4
4
  using UnityEditor.Callbacks;
@@ -1,5 +1,5 @@
1
1
  fileFormatVersion: 2
2
- guid: 437e90a13feae6b43b0731f2cf7f3dbe
2
+ guid: 6e6d89fa6e932334f8ee705671fd9f1a
3
3
  MonoImporter:
4
4
  externalObjects: {}
5
5
  serializedVersion: 2
@@ -1,6 +1,8 @@
1
+ using System.Diagnostics;
1
2
  using UnityEngine;
2
3
 
3
4
  namespace PuzzlescapeGames.Services
4
5
  {
6
+ [ Conditional( "UNITY_EDITOR" ) ]
5
7
  public sealed class TimeInfoAttribute : PropertyAttribute { }
6
8
  }
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.2.5",
4
+ "version" : "1.2.7",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {