diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientAPI.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientAPI.java index 157b7aa5..b9136857 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientAPI.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientAPI.java @@ -866,7 +866,7 @@ private static PlayFabResult privateAddGenericIDAsync(final } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") public static FutureTask> AddUsernamePasswordAsync(final AddUsernamePasswordRequest request) { @@ -878,7 +878,7 @@ public PlayFabResult call() throws Exception { } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") public static PlayFabResult AddUsernamePassword(final AddUsernamePasswordRequest request) { @@ -896,7 +896,7 @@ public PlayFabResult call() throws Exception { } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") private static PlayFabResult privateAddUsernamePasswordAsync(final AddUsernamePasswordRequest request) throws Exception { diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java index b2776366..2b987dc6 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java @@ -960,7 +960,7 @@ public static class GetAccountInfoResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -2048,7 +2048,7 @@ public static class GrantCharacterToUserResult { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java index 8fbfd1ec..9a8c01ef 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java @@ -245,7 +245,8 @@ public static enum PlayFabErrorCode { ExpiredContinuationToken(1241), InvalidSegment(1242), InvalidSessionId(1243), - SessionLogNotFound(1244); + SessionLogNotFound(1244), + InvalidSearchTerm(1245); public int id; diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java index 151fca09..3d39dc0c 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java @@ -4,9 +4,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.32.160801"; + public static String SdkVersion = "0.33.160815"; public static String BuildIdentifier = "jbuild_javasdk_0"; - public static String SdkVersionString = "JavaSDK-0.32.160801"; + public static String SdkVersionString = "JavaSDK-0.33.160815"; public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website) public static ErrorCallback GlobalErrorHandler; diff --git a/PlayFabClientSDK/src/com/playfab/PlayFabClientAPI.java b/PlayFabClientSDK/src/com/playfab/PlayFabClientAPI.java index 4dc0f2f9..5d476a3d 100644 --- a/PlayFabClientSDK/src/com/playfab/PlayFabClientAPI.java +++ b/PlayFabClientSDK/src/com/playfab/PlayFabClientAPI.java @@ -865,7 +865,7 @@ private static PlayFabResult privateAddGenericIDAsync(final } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") public static FutureTask> AddUsernamePasswordAsync(final AddUsernamePasswordRequest request) { @@ -877,7 +877,7 @@ public PlayFabResult call() throws Exception { } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") public static PlayFabResult AddUsernamePassword(final AddUsernamePasswordRequest request) { @@ -895,7 +895,7 @@ public PlayFabResult call() throws Exception { } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") private static PlayFabResult privateAddUsernamePasswordAsync(final AddUsernamePasswordRequest request) throws Exception { diff --git a/PlayFabClientSDK/src/com/playfab/PlayFabClientModels.java b/PlayFabClientSDK/src/com/playfab/PlayFabClientModels.java index b2776366..2b987dc6 100644 --- a/PlayFabClientSDK/src/com/playfab/PlayFabClientModels.java +++ b/PlayFabClientSDK/src/com/playfab/PlayFabClientModels.java @@ -960,7 +960,7 @@ public static class GetAccountInfoResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -2048,7 +2048,7 @@ public static class GrantCharacterToUserResult { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** diff --git a/PlayFabClientSDK/src/com/playfab/PlayFabErrors.java b/PlayFabClientSDK/src/com/playfab/PlayFabErrors.java index 8fbfd1ec..9a8c01ef 100644 --- a/PlayFabClientSDK/src/com/playfab/PlayFabErrors.java +++ b/PlayFabClientSDK/src/com/playfab/PlayFabErrors.java @@ -245,7 +245,8 @@ public static enum PlayFabErrorCode { ExpiredContinuationToken(1241), InvalidSegment(1242), InvalidSessionId(1243), - SessionLogNotFound(1244); + SessionLogNotFound(1244), + InvalidSearchTerm(1245); public int id; diff --git a/PlayFabClientSDK/src/com/playfab/PlayFabSettings.java b/PlayFabClientSDK/src/com/playfab/PlayFabSettings.java index 543f888a..22535d60 100644 --- a/PlayFabClientSDK/src/com/playfab/PlayFabSettings.java +++ b/PlayFabClientSDK/src/com/playfab/PlayFabSettings.java @@ -3,9 +3,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.32.160801"; + public static String SdkVersion = "0.33.160815"; public static String BuildIdentifier = "jbuild_javasdk_0"; - public static String SdkVersionString = "JavaSDK-0.32.160801"; + public static String SdkVersionString = "JavaSDK-0.33.160815"; public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website) public static ErrorCallback GlobalErrorHandler; diff --git a/PlayFabSDK/src/com/playfab/PlayFabAdminModels.java b/PlayFabSDK/src/com/playfab/PlayFabAdminModels.java index e892ca98..04c291b6 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabAdminModels.java +++ b/PlayFabSDK/src/com/playfab/PlayFabAdminModels.java @@ -583,7 +583,7 @@ public static class GetAllSegmentsResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -1235,7 +1235,7 @@ public static class ItemGrant { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** @@ -1546,6 +1546,10 @@ public static class PlayerProfile { * Dictionary of player's statistics using only the latest version's value */ public Map Statistics; + /** + * Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals. + */ + public Map ValuesToDate; /** * Dictionary of player's virtual currency balances */ @@ -1962,7 +1966,7 @@ public static enum TitleActivationStatus { public static class UpdateCatalogItemsRequest { /** - * Which catalog is being updated + * Which catalog is being updated. If null, uses the default catalog. */ public String CatalogVersion; /** @@ -2050,7 +2054,7 @@ public static class UpdateRandomResultTablesResult { public static class UpdateStoreItemsRequest { /** - * catalog version of the store to update. Use default catalog version if null + * catalog version of the store to update. If null, uses the default catalog. */ public String CatalogVersion; /** diff --git a/PlayFabSDK/src/com/playfab/PlayFabClientAPI.java b/PlayFabSDK/src/com/playfab/PlayFabClientAPI.java index 4dc0f2f9..5d476a3d 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabClientAPI.java +++ b/PlayFabSDK/src/com/playfab/PlayFabClientAPI.java @@ -865,7 +865,7 @@ private static PlayFabResult privateAddGenericIDAsync(final } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") public static FutureTask> AddUsernamePasswordAsync(final AddUsernamePasswordRequest request) { @@ -877,7 +877,7 @@ public PlayFabResult call() throws Exception { } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") public static PlayFabResult AddUsernamePassword(final AddUsernamePasswordRequest request) { @@ -895,7 +895,7 @@ public PlayFabResult call() throws Exception { } /** - * Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method. + * Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login. */ @SuppressWarnings("unchecked") private static PlayFabResult privateAddUsernamePasswordAsync(final AddUsernamePasswordRequest request) throws Exception { diff --git a/PlayFabSDK/src/com/playfab/PlayFabClientModels.java b/PlayFabSDK/src/com/playfab/PlayFabClientModels.java index b2776366..2b987dc6 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabClientModels.java +++ b/PlayFabSDK/src/com/playfab/PlayFabClientModels.java @@ -960,7 +960,7 @@ public static class GetAccountInfoResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -2048,7 +2048,7 @@ public static class GrantCharacterToUserResult { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** diff --git a/PlayFabSDK/src/com/playfab/PlayFabErrors.java b/PlayFabSDK/src/com/playfab/PlayFabErrors.java index 8fbfd1ec..9a8c01ef 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabErrors.java +++ b/PlayFabSDK/src/com/playfab/PlayFabErrors.java @@ -245,7 +245,8 @@ public static enum PlayFabErrorCode { ExpiredContinuationToken(1241), InvalidSegment(1242), InvalidSessionId(1243), - SessionLogNotFound(1244); + SessionLogNotFound(1244), + InvalidSearchTerm(1245); public int id; diff --git a/PlayFabSDK/src/com/playfab/PlayFabMatchmakerModels.java b/PlayFabSDK/src/com/playfab/PlayFabMatchmakerModels.java index 6884bf88..d43aab61 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabMatchmakerModels.java +++ b/PlayFabSDK/src/com/playfab/PlayFabMatchmakerModels.java @@ -25,7 +25,7 @@ public static class AuthUserResponse { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** diff --git a/PlayFabSDK/src/com/playfab/PlayFabServerModels.java b/PlayFabSDK/src/com/playfab/PlayFabServerModels.java index ce441b6d..1489d62e 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabServerModels.java +++ b/PlayFabSDK/src/com/playfab/PlayFabServerModels.java @@ -732,7 +732,7 @@ public static class GetAllSegmentsResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -1687,7 +1687,7 @@ public static class ItemGrant { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** @@ -2065,6 +2065,10 @@ public static class PlayerProfile { * Dictionary of player's statistics using only the latest version's value */ public Map Statistics; + /** + * Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals. + */ + public Map ValuesToDate; /** * Dictionary of player's virtual currency balances */ diff --git a/PlayFabSDK/src/com/playfab/PlayFabSettings.java b/PlayFabSDK/src/com/playfab/PlayFabSettings.java index 1d1bfb67..c7534937 100644 --- a/PlayFabSDK/src/com/playfab/PlayFabSettings.java +++ b/PlayFabSDK/src/com/playfab/PlayFabSettings.java @@ -3,9 +3,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.32.160801"; + public static String SdkVersion = "0.33.160815"; public static String BuildIdentifier = "jbuild_javasdk_0"; - public static String SdkVersionString = "JavaSDK-0.32.160801"; + public static String SdkVersionString = "JavaSDK-0.33.160815"; public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website) public static ErrorCallback GlobalErrorHandler; diff --git a/PlayFabServerSDK/src/com/playfab/PlayFabAdminModels.java b/PlayFabServerSDK/src/com/playfab/PlayFabAdminModels.java index e892ca98..04c291b6 100644 --- a/PlayFabServerSDK/src/com/playfab/PlayFabAdminModels.java +++ b/PlayFabServerSDK/src/com/playfab/PlayFabAdminModels.java @@ -583,7 +583,7 @@ public static class GetAllSegmentsResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -1235,7 +1235,7 @@ public static class ItemGrant { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** @@ -1546,6 +1546,10 @@ public static class PlayerProfile { * Dictionary of player's statistics using only the latest version's value */ public Map Statistics; + /** + * Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals. + */ + public Map ValuesToDate; /** * Dictionary of player's virtual currency balances */ @@ -1962,7 +1966,7 @@ public static enum TitleActivationStatus { public static class UpdateCatalogItemsRequest { /** - * Which catalog is being updated + * Which catalog is being updated. If null, uses the default catalog. */ public String CatalogVersion; /** @@ -2050,7 +2054,7 @@ public static class UpdateRandomResultTablesResult { public static class UpdateStoreItemsRequest { /** - * catalog version of the store to update. Use default catalog version if null + * catalog version of the store to update. If null, uses the default catalog. */ public String CatalogVersion; /** diff --git a/PlayFabServerSDK/src/com/playfab/PlayFabErrors.java b/PlayFabServerSDK/src/com/playfab/PlayFabErrors.java index 8fbfd1ec..9a8c01ef 100644 --- a/PlayFabServerSDK/src/com/playfab/PlayFabErrors.java +++ b/PlayFabServerSDK/src/com/playfab/PlayFabErrors.java @@ -245,7 +245,8 @@ public static enum PlayFabErrorCode { ExpiredContinuationToken(1241), InvalidSegment(1242), InvalidSessionId(1243), - SessionLogNotFound(1244); + SessionLogNotFound(1244), + InvalidSearchTerm(1245); public int id; diff --git a/PlayFabServerSDK/src/com/playfab/PlayFabMatchmakerModels.java b/PlayFabServerSDK/src/com/playfab/PlayFabMatchmakerModels.java index 6884bf88..d43aab61 100644 --- a/PlayFabServerSDK/src/com/playfab/PlayFabMatchmakerModels.java +++ b/PlayFabServerSDK/src/com/playfab/PlayFabMatchmakerModels.java @@ -25,7 +25,7 @@ public static class AuthUserResponse { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** diff --git a/PlayFabServerSDK/src/com/playfab/PlayFabServerModels.java b/PlayFabServerSDK/src/com/playfab/PlayFabServerModels.java index ce441b6d..1489d62e 100644 --- a/PlayFabServerSDK/src/com/playfab/PlayFabServerModels.java +++ b/PlayFabServerSDK/src/com/playfab/PlayFabServerModels.java @@ -732,7 +732,7 @@ public static class GetAllSegmentsResult { public static class GetCatalogItemsRequest { /** - * Which catalog is being requested. + * Which catalog is being requested. If null, uses the default catalog. */ public String CatalogVersion; @@ -1687,7 +1687,7 @@ public static class ItemGrant { } /** - * A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. + * A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData. */ public static class ItemInstance implements Comparable { /** @@ -2065,6 +2065,10 @@ public static class PlayerProfile { * Dictionary of player's statistics using only the latest version's value */ public Map Statistics; + /** + * Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals. + */ + public Map ValuesToDate; /** * Dictionary of player's virtual currency balances */ diff --git a/PlayFabServerSDK/src/com/playfab/PlayFabSettings.java b/PlayFabServerSDK/src/com/playfab/PlayFabSettings.java index b92efba1..fdf196b1 100644 --- a/PlayFabServerSDK/src/com/playfab/PlayFabSettings.java +++ b/PlayFabServerSDK/src/com/playfab/PlayFabSettings.java @@ -3,9 +3,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.32.160801"; + public static String SdkVersion = "0.33.160815"; public static String BuildIdentifier = "jbuild_javasdk_0"; - public static String SdkVersionString = "JavaSDK-0.32.160801"; + public static String SdkVersionString = "JavaSDK-0.33.160815"; public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website) public static ErrorCallback GlobalErrorHandler;