Esempio n. 1
0
        internal GoogleConfigurationWebRequests(GoogleConfigurationData remoteData, Action <string> onGetGooglePlayKey, Action <GooglePlayRevenueTrackingKeyState> onSetGooglePlayKey)
        {
            m_PurchasingRemoteDataRef = remoteData;

            m_GetGooglePlayKeyCallback = onGetGooglePlayKey;
            m_SetGooglePlayKeyCallback = onSetGooglePlayKey;
        }
        internal GooglePlayConfigurationSettingsBlock()
        {
            m_GooglePlayDataRef = GoogleConfigService.Instance().GoogleConfigData;
            m_WebRequests       = new GoogleConfigurationWebRequests(m_GooglePlayDataRef, this.OnGetGooglePlayKey, this.OnUpdateGooglePlayKey);

            m_ObfuscatorSection = new GoogleObfuscatorSection(m_GooglePlayDataRef);
        }
Esempio n. 3
0
        internal GooglePlayConfigurationSettingsBlock(GoogleConfigurationData remoteData)
        {
            m_GooglePlayDataRef = remoteData;
            m_WebRequests       = new GoogleConfigurationWebRequests(remoteData, this.OnGetGooglePlayKey, this.OnUpdateGooglePlayKey);

            m_ObfuscatorSection = new GoogleObfuscatorSection(m_GooglePlayDataRef);
        }
Esempio n. 4
0
 internal GoogleObfuscatorSection(GoogleConfigurationData googleData)
     : base()
 {
     m_GoogleConfigDataRef = googleData;
 }