Hi!!
Is it possible to use two admob accounts in the same app? For example: one banner for one account and one interstitial for another?
thks
LH
Hi!!
Is it possible to use two admob accounts in the same app? For example: one banner for one account and one interstitial for another?
thks
LH
You can only use one AdMob account in an app.
However you can set up two ad unit id’s under one account. One ad unit id for interstitials and one for banners.
Thank you very much for the reply!!
So how can I resolve the profit sharing between two developers?
Many thks!
I’m not sure.
They will have to use one account and agree on some arrangement between themselves (like a percentage split).
thanks for your time!
You can easily do this, we’ve been doing it for years. Just setup a table the first user in the table is user 1 and has his ids user 2 is the second user in the table and has his ids
Then if you want a 50/50 split just do
local idsToUse = adIds[math.random(2)]
Boom whoever gets picked uses all their ids for that session. Next time the user starts the app it’s 50/50 chance again.
Great!
Many thks!
You can only use one AdMob account in an app.
However you can set up two ad unit id’s under one account. One ad unit id for interstitials and one for banners.
Thank you very much for the reply!!
So how can I resolve the profit sharing between two developers?
Many thks!
I’m not sure.
They will have to use one account and agree on some arrangement between themselves (like a percentage split).
thanks for your time!
You can easily do this, we’ve been doing it for years. Just setup a table the first user in the table is user 1 and has his ids user 2 is the second user in the table and has his ids
Then if you want a 50/50 split just do
local idsToUse = adIds[math.random(2)]
Boom whoever gets picked uses all their ids for that session. Next time the user starts the app it’s 50/50 chance again.
Great!
Many thks!