有没有其他人在他们的Android应用中使用mobileCore for OfferWall广告?
我最近从谷歌插页式广告切换到mobileCore插页式广告。但我注意到应用程序中的RAM使用率自交换机以来额外增加了100MB。还有其他人经历过这个吗?也许我在代码中做错了。
我在onCreate
中初始化了它public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mActivity = this;
//create the mobileCore ads
MobileCore.init(mActivity, MOBILE_CORE_HASH, LOG_TYPE.DEBUG, AD_UNITS.OFFERWALL, AD_UNITS.STICKEEZ);
然后我在这里打电话
public void showMobileCoreOfferWall(){
if(MobileCore.isOfferwallReady()){
MobileCore.showOfferWall(mActivity, null, true);
} else {
MobileCore.showOfferWall(mActivity, null, true);
MobileCore.refreshOffers();
}
}
public void showMobileCoreStickee(boolean show){
if(show){
if(MobileCore.isStickeeReady()){
MobileCore.showStickee(mActivity);
} else {
MobileCore.showStickee(mActivity);
MobileCore.refreshOffers();
}
} else {
if(MobileCore.isStickeeShowing()){
MobileCore.hideStickee();
}
}
}