如何从项目中删除或禁用startapp广告 enter link description here
答案 0 :(得分:0)
转到etc / hosts或\ Windows \ System32 \ driver \ etc \ hosts并输入以下行:
127.0.0.1 google.analytics // redirect link to local host
127.0.0.1 shop.arian-it.ir // for your site
为您不想要的每个网站添加一行。
答案 1 :(得分:0)
项目中有StartAppInApp-3.5.6.jar
,可能有不同的版本。在项目中找到它并将其删除。这个jar可能在你项目的libs文件夹中。
当您移除jar时,您会在项目中看到很多错误。删除那些有缺陷的线,其中一些在下面。
public StartAppAd startAppAd;
StartAppSDK.init(HomeScreen.this, "204893117", true);
startAppAd = new StartAppAd(HomeScreen.this);
startAppAd.loadAd(new AdEventListener() {
@Override
public void onReceiveAd(Ad arg0) {
startAppAd.showAd();
}
@Override
public void onFailedToReceiveAd(Ad arg0) {
// TODO Auto-generated method stub
}
});
从AndoridMainifest.xml
<activity android:name="com.startapp.android.publish.list3d.List3DActivity"
android:screenOrientation="portrait"
android:theme="@android:style/Theme" />
<activity android:name="com.startapp.android.publish.OverlayActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Translucent" />
<activity android:name="com.startapp.android.publish.FullScreenActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:screenOrientation="portrait"
android:theme="@android:style/Theme" />