com.playfab.PlayFabSettings Maven / Gradle / Ivy
package com.playfab;
import com.playfab.PlayFabErrors.ErrorCallback;
public class PlayFabSettings {
    public static String SdkVersion = "0.66.180507";
    public static String BuildIdentifier = "jbuild_javasdk_1";
    public static String SdkVersionString = "JavaSDK-0.66.180507";
    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;
    public static String EntityToken = null; // Set by GetEntityToken
    public static String DeveloperSecretKey = 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 String ClientSessionTicket = null; // Set by any Client Login Call
    public static String AdvertisingIdType = null; // Set this to the appropriate AD_TYPE_X constant below
    public static String AdvertisingIdValue = null; // Set this to corresponding device value
    // DisableAdvertising is provided for completeness, but changing it is not suggested
    // Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
    public static Boolean DisableAdvertising = false;
    public static final String AD_TYPE_IDFA = "Idfa";
    public static final String AD_TYPE_ANDROID_ID = "Adid";
    public static String GetURL() {
        return "https://" + TitleId + ".playfabapi.com";
    }
}
    © 2015 - 2025 Weber Informatics LLC | Privacy Policy