Appodeal Plugin Errors

Hello

I use appodeal plugin (beta version) for months.

Today in every build I make I get an error message inside the app.

“ERROR: MyTarget not found”

I never wanted MyTarget so it’s commented out in my build.settings.

If we don’t touch the base block we are allowed to do it. Right?

Enabling MyTarget doesn’t change anything because I get the same error for another network.

It’s “ERROR: Mintegral not found” (never hear about Mintegral before).

Please fix.

My build.settings

-- Base ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AmazonAds'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.TwitterMoPub'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' }, -- Banner --['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Flurry'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Yandex'] = { publisherId = 'com.coronalabs' }, -- Interstitial --['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Chartboost'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Flurry'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.IronSource'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Mobvista'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Ogury'] = { publisherId = 'com.coronalabs' }, -- Rewarded Video ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Chartboost'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.FacebookAudience'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Flurry'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.InMobi'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.IronSource'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.Mobvista'] = { publisherId = 'com.coronalabs' }, --['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Unity'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Vungle'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.beta.Tapjoy'] = { publisherId = 'com.coronalabs' },

Hello! Actually we rolled out update to Appodeal plugin yesterday for Android. Is this android?

Yes it is android!

Something went wrong I guess :stuck_out_tongue:

Any chance to fix it soon?

I got a client’s app to upload today.

Any news?

Appodeal plugin for Android is broken.

Please, enable Mobvista.

From appodeal changelog

  • Mailru renamed to MyTarget
  • Mobvista renamed to Mintegral

So now we are forced to have MyTarget and Mobvista?

This will produce larger builds.

Try passing a parameter to appodea.init, disableNetworks={“Mintegral”}

EDIT: look for disableNetworks below for correct spelling. It is case sensitive

I tried it before with MyTarget too.

No luck, same file size.

Also where is the changelog for Corona SDK?

I find it only for some others.

Well, you have to disable plugin and add disableNetworks option. Also, usually ad networks are not terribly big

I have disabled plugins using disableNetworks option.

The problem is that it works only for some networks, not all of them.

At least that’s what I see.

I just went to update my apps for the first time in a while and can confirm everything Aarbron has stated. The disableNetworks parameter has no effect on MyTarget and Mintegral; the apk size is increased by over 2MB’s. If we are now forced to include those two networks going forward, that’s fine, but please confirm if this is the case. Thanks! 

In the meantime, I released my update including Mintegral and MyTarget, and subsequently saw new ANR’s reported back in the play console corresponding to Mintegral.

Broadcast of Intent { act=android.intent.action.PACKAGE_ADDED dat=package:com.microsoft.office.outlook flg=0x4000010 cmp=com.swiftscales.music.vvt/com.mintegral.msdk.click.AppReceiver (has extras) }

So, I would really love to know if there is a way to exclude them, as I only inluded them because I don’t see a viable way not to! Thank you.

I get the same ANRs for the same reason.

The last appodeal plugin update broke it.

On a loosely related note, I noticed the frequency of daily builds has declined steadily over the past few months, maybe they’re short staffed or something? That 64 bit deadline is rapidly approaching too  :huh:

I am seeing the same thing.

Please roll back the latest appodeal update.

Hello. Can you please provide full crash log/trace? If it’s a lot if text it’s better to use pastebin.com

https://pastebin.com/FsEe1rKX

Please let us know how to disable Mintegral and MyTarget, thanks

Here:
in build.settings, comment all lines containing this 2 plugis:

-- ['plugin.appodeal.beta.Mobvista'] = { publisherId = 'com.coronalabs' }, -- ['plugin.appodeal.beta.MyTarget'] = { publisherId = 'com.coronalabs' },

in your Lua code, find appodeal.Init() call and add 

disableNetorks = {"mintegral", "my\_target"}

to the parameters table

Here is full list of magic keywords to disable networks:

adcolony admob amazon\_ads applovin appnexus appodeal appodealx chartboost facebook flurry inmobi inner-active ironsource my\_target mintegral mopub mraid mraid\_va nast ogury openx pubnative smaato startapp tapjoy unity\_ads vast vpaid vungle yandex 

this would also solve crash with Mintegral.

@Vlads your response is very much appreciated. I just tried this, and it appears to work. I guess @Aarbron and I were assuming the keywords had the same capitalization scheme as the plugin names, ie: MyTarget vs my_target, glad that’s settled.

Hello! Actually we rolled out update to Appodeal plugin yesterday for Android. Is this android?