Gordon
Gordon

Reputation: 147

iOS & Android: Quickest way to get rid of Admob Banner ad without updating the whole app?

Is there a way to get rid of Admob Banner ads in iOS as well as Android without having to update the whole app? Just delete the ads from my AdMob backend maybe?

I only have a couple of hours left until launch, that is why updating is not really an option.

Thanks in advance!

Upvotes: 3

Views: 279

Answers (2)

Balagurubaran
Balagurubaran

Reputation: 569

I agreed Alon points.The solution might be, get the Boolean variable from the server and show the adds based on that.For this you should do, server side as well as iOS and android code changes too.

Upvotes: 0

Alon Levanon
Alon Levanon

Reputation: 701

As far as I know, you can't do that.

But, you can integrate Firebase Remote Config on both platforms (iOS & Android) and define a boolean parameter to set AdMob on/off. Then you can change it from Firebase console easily without deploying another version. You can also use segments for that attribute. For example, you can enable AdMob only on Android and disable on iOS.

So basically you still have to update the code for at least on time in order to enable remote config feature.

Upvotes: 3

Related Questions