Runtime Error on Daily Build version 2019.3498 with Plugin

I used Corona SDK Daily Build version 2019.3498 to build my application, but it crashed on the first screen

There are some plugins in my application below:

plugin.facebook.v4a plugin.admob plugin.unityads plugin.fbAudienceNetwork plugin.zip plugin.notifications.v2 plugin.googleAnalytics plugin.google.iap.v3 plugin.voiceToText plugin.cnkFileManager plugin.pasteboard

Please help me!

What I did to make build working. Comment out all plugins(code used for that plugin should commented too) and build, it should working fine. Then try to uncomment plugins one by one and check which plugin gives error.

Usman Mughal

at least post what error you’re getting.

Have you added the following settings to build.setting?

To use Admob with the new Corona you need to add it.

https://docs.coronalabs.com/plugin/admob/index.html

I had the same problem, but I solved it.

It should be an error in Admob initialization.

settings = { &nbsp; &nbsp; android = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; applicationChildElements = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [[&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \<meta-data android:name="com.google.android.gms.ads.APPLICATION\_ID" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:value="[YOUR\_ADMOB\_APP\_ID]"/\>&nbsp; -- replace with your app id. See: https://goo.gl/fQ2neu &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]], &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; }, &nbsp; &nbsp; plugins = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; ["plugin.admob"] = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; publisherId = "com.coronalabs" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; }, }

This character does not change.

com.google.android.gms.ads.APPLICATION\_ID

Only here you need to change to your AdMob ID.

android:value="[YOUR\_ADMOB\_APP\_ID]"

If your build.setting is not set, please try it.

Any updates on it? I’m marking thread as answered, but if issue persists after adding com.google.android.gms.ads.APPLICATION_ID I’ll reopen it.

What I did to make build working. Comment out all plugins(code used for that plugin should commented too) and build, it should working fine. Then try to uncomment plugins one by one and check which plugin gives error.

Usman Mughal

at least post what error you’re getting.

Have you added the following settings to build.setting?

To use Admob with the new Corona you need to add it.

https://docs.coronalabs.com/plugin/admob/index.html

I had the same problem, but I solved it.

It should be an error in Admob initialization.

settings = { &nbsp; &nbsp; android = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; applicationChildElements = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; [[&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; \<meta-data android:name="com.google.android.gms.ads.APPLICATION\_ID" &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:value="[YOUR\_ADMOB\_APP\_ID]"/\>&nbsp; -- replace with your app id. See: https://goo.gl/fQ2neu &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ]], &nbsp; &nbsp; &nbsp; &nbsp; } &nbsp; &nbsp; }, &nbsp; &nbsp; plugins = &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; ["plugin.admob"] = &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; publisherId = "com.coronalabs" &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; }, }

This character does not change.

com.google.android.gms.ads.APPLICATION\_ID

Only here you need to change to your AdMob ID.

android:value="[YOUR\_ADMOB\_APP\_ID]"

If your build.setting is not set, please try it.

Any updates on it? I’m marking thread as answered, but if issue persists after adding com.google.android.gms.ads.APPLICATION_ID I’ll reopen it.