Need to stop Startapp Splash Ad

857 views Asked by At

I need to disable startup splash Ad

StartAppAd.disableSplash()

And I added the following code in my app activities, but after adding its showing error "cannot resolve symbol" I have to disable splash ad. Anybody can help

3

There are 3 answers

0
King Maf On

better if you post your detailed error in logcat. so everyone can understand your error code

1
Abdlhay On

make sure you're using the latest version of StartApp dependency

  repositories {
    mavenCentral()
}
dependencies {
    // noinspection GradleDynamicVersion
    implementation 'com.startapp:inapp-sdk:4.8.+'
}
0
Agmcz On

Create a class App and call StartAppAd.disableSplash();

import com.startapp.sdk.adsbase.StartAppAd;

public class App extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        StartAppAd.disableSplash();
    }
}

add in manifests

<application
    android:name=".App"