use of org.prebid.mobile.rendering.networking.modelcontrollers.BidRequester in project prebid-mobile-android by prebid.
the class BidLoader method sendBidRequest.
private void sendBidRequest(Context context, AdConfiguration config) {
mCurrentlyLoading.set(true);
if (mBidRequester == null) {
mBidRequester = new BidRequester(context, config, new AdRequestInput(), mResponseHandler);
}
mBidRequester.startAdRequest();
}
Aggregations