How to make admob work with Android version <= 3.2?

I just downloaded the latest version of admob sdk and added it to my application. But he says that compilation requires android 3.2. I just want my application to work fine on previous versions of Android and whether ads downloaded previous versions of Android? If so, what does the minimum Android 3.2 requirement mean? If not, how do you advertise work on previous versions of Android?

+6
source share
2 answers

We have successfully completed integration with 1.6. I think you need to download previous versions, not the latest ones, and then add them to your project.

+4
source

you must provide <uses-sdk android:minSdkVersion="4" /> (4 or any other version you want your application to be compatible) in your manifest file to make it compatible with older versions. can compile with Android 3.2 and make the application on older versions installed as min sdk version in the manifest file

or if this does not work, download an earlier version of admob and try.

+2
source

Source: https://habr.com/ru/post/907554/


All Articles