[Android] Extracted search banner info from JNI

This commit is contained in:
Кузнецова Ксения 2017-08-19 11:47:21 +03:00 committed by Arsentiy Milchakov
parent d26915a5dd
commit 0d9302e7b1
3 changed files with 38 additions and 0 deletions

View file

@ -9,6 +9,9 @@
#include "map/chart_generator.hpp"
#include "map/user_mark.hpp"
#include "partners_api/ads_engine.hpp"
#include "partners_api/banner.hpp"
#include "search/everywhere_search_params.hpp"
#include "storage/storage_helpers.hpp"
@ -1473,4 +1476,10 @@ Java_com_mapswithme_maps_Framework_nativeDeleteSavedRoutePoints()
{
frm()->GetRoutingManager().DeleteSavedRoutePoints();
}
JNIEXPORT jobjectArray JNICALL
Java_com_mapswithme_maps_Framework_nativeGetSearchBanners(JNIEnv * env, jclass)
{
return usermark_helper::ToBannersArray(env, frm()->GetAdsEngine().GetSearchBanners());
}
} // extern "C"

View file

@ -8,6 +8,7 @@ import android.support.annotation.Nullable;
import android.support.annotation.Size;
import android.support.annotation.UiThread;
import com.mapswithme.maps.ads.Banner;
import com.mapswithme.maps.ads.LocalAdInfo;
import com.mapswithme.maps.api.ParsedRoutingData;
import com.mapswithme.maps.api.ParsedSearchRequest;
@ -367,4 +368,6 @@ public class Framework
public static native boolean nativeLoadRoutePoints();
public static native void nativeSaveRoutePoints();
public static native void nativeDeleteSavedRoutePoints();
public static native Banner[] nativeGetSearchBanners();
}

View file

@ -0,0 +1,26 @@
package com.mapswithme.maps.ads;
import com.mapswithme.maps.Framework;
public class GoogleSearchAd
{
private String mAdUnitId = "";
public GoogleSearchAd()
{
Banner[] banners = Framework.nativeGetSearchBanners();
if (banners == null)
return;
for (Banner b : banners)
{
if (b.getProvider().equals(Providers.GOOGLE))
{
mAdUnitId = b.getId();
break;
}
}
}
String getAdUnitId() { return mAdUnitId; }
}