com.puzzlescapegames.services 1.4.2 → 1.4.3

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.
@@ -9,6 +9,7 @@ namespace PuzzlescapeGames.Services.Editor
9
9
  {
10
10
  public static class XCodePostProcess
11
11
  {
12
+ private const string k_LocationWhenInUseUsageDescription = "This app uses your location to show more relevant and personalized advertising content that matches your interests and region.";
12
13
  // Set the IDFA request description:
13
14
  private const string k_TrackingDescription = "Your data will be used to provide you a better and personalized ad experience.";
14
15
 
@@ -27,6 +28,8 @@ namespace PuzzlescapeGames.Services.Editor
27
28
 
28
29
  //Default Encrypt
29
30
  rootDict.SetBoolean( "ITSAppUsesNonExemptEncryption", false );
31
+ //Location
32
+ rootDict.SetString( "NSLocationWhenInUseUsageDescription", k_LocationWhenInUseUsageDescription );
30
33
  //ATT
31
34
  rootDict.SetString( "NSUserTrackingUsageDescription", k_TrackingDescription );
32
35
  //AppsFlyer Swizzling
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.4.2",
4
+ "version" : "1.4.3",
5
5
  "author" : "Puzzlescape Games",
6
6
  "description" : "Common services.",
7
7
  "repository": {