How to remove the Toast ERROR: Ad not found

1

I'm using the Appodeal sdk in my app and when I upload the ads I see a Toast that says it can not find Flurry, Facebook, Yandex, Unity, Starapp, among others that I understand are the advertising sources for My app but I do not understand why I get those messages if I already complete all the steps of the sdk integration and included all the necessary ads libraries. Also the Toast appears several times naming each of the mediation networks that uses appodeal even if the ad has been loaded correctly and I believe that you see all those Toast messages would be very annoying for users of my app

    
asked by Sneyder Angulo 26.07.2016 в 17:35
source

1 answer

1

Your application requires other applications which you can not find, I recommend you try to implement a code which verifies if the applications are installed based on your package:

private boolean estaInstaladaAplicacion(String nombrePaquete, Context context) {

    PackageManager pm = context.getPackageManager();
    try {
        pm.getPackageInfo(nombrePaquete, PackageManager.GET_ACTIVITIES);
        return true;
    } catch (NameNotFoundException e) {
        return false;
    }
}

If they are not, perform an attempt to open the playstore and suggest the user install the required applications. You can see more information in this answer:

link

    
answered by 26.07.2016 в 18:39