Exemplo n.º 1
0
        public void setKeywordMap(TSKeywordMap map)
        {
            if (!_safeSetup())
            {
                return;
            }

            int mapIndex = (map != null) ? map.getId() : -1;

            _setKeywordMap(id, mapIndex);
        }
Exemplo n.º 2
0
        public TapSenseInterstitial(string adUnitId, TSKeywordMap map)
        {
            if (!_safeSetup())
            {
                id = 0;
                return;
            }
            int mapIndex = (map != null) ? map.getId() : -1;

            id       = _initInterstitialWithAdUnitIdKeywordMap(adUnitId, mapIndex);
            listener = null;

            registerForCallbacks();
            TapSense.log("new Interstitial(): " + id + " registered");
        }