question regarding the build settings of appodeal

I have a question regarding the organization that the plugin appodeal should have in the build settings. I have been able to do a scene in order to have the consent of the user regarding his decision to give or not the consent for a personalized ad experience, but, I have doubts because the hasUserConsent can only be used in the beta of said plugin. Suppose I only want to use pluging in this way cause I only want to use: GoogleAdMob, StartApp, AdColony and AppLovin:

 plugins =   {     -- Base     ['plugin.appodeal.base'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.GoogleAdMob'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.StartApp'] = { publisherId = 'com.coronalabs' },     -- Interstitial     ['plugin.appodeal.AdColony'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.AppLovin'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.StartApp'] = { publisherId = 'com.coronalabs' },     -- Rewarded Video     ['plugin.appodeal.AdColony'] = { publisherId = 'com.coronalabs' }, --duplicates??     ['plugin.appodeal.AppLovin'] = { publisherId = 'com.coronalabs' }, ['plugin.appodeal.StartApp'] = { publisherId = 'com.coronalabs' },   },

I’m only following the instructions in the documents and I still do not understand why there should be duplicates of plugin tables.

Anyway, if I want to change to the beta plugin should I do just this?

 plugins =   {     -- Base     ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },     -- Interstitial     ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },     -- Rewarded Video     ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' },  --duplicates again??     ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },   },

Or simply…

 plugins =   {     -- Base     ['plugin.appodeal.beta.base'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.GoogleAdMob'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.StartApp'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.AdColony'] = { publisherId = 'com.coronalabs' },     ['plugin.appodeal.beta.AppLovin'] = { publisherId = 'com.coronalabs' },   }

:wacko:  :wacko:  :wacko: 

Thank in advance

DoDI

You do not have to include the duplicate. They are just ignored. Remember the values with “–” are just comments and don’t have any functional purpose. Corona doesn’t know the categories because they are just comments. You can change the one that says “–Banner” to “–Monkey” with no change in behavior.

So I repeat: You can delete the duplicates.

You do not have to include the duplicate. They are just ignored. Remember the values with “–” are just comments and don’t have any functional purpose. Corona doesn’t know the categories because they are just comments. You can change the one that says “–Banner” to “–Monkey” with no change in behavior.

So I repeat: You can delete the duplicates.