Hi,
sorry, maybe I was not clear.
Version 10.7.7.0 of the com.google.ads.mediation:inmobi package requires
minSdkVersion version 24, instead of 21. If you look in the code of your library you'll find, in the AndroidManifest.xml file, the following code:
This prevents the library to be used with SDK 21. If I try to compile it with a project where I have
minSdkVersion set to 21 I will get the following error:
Manifest merger failed : uses-sdk:minSdkVersion 21 cannot be smaller than version 24 declared in library [com.google.ads.mediation:inmobi:10.7.7.0] ...\inmobi-10.7.7.0\AndroidManifest.xml as the library might be using APIs not available in 21
Suggestion: use a compatible library with a minSdk of at most 21,
or increase this project's minSdk version to at least 24,
or use tools:overrideLibrary="com.google.ads.mediation.inmobi" to force usage (may lead to runtime failures)
With version 1.7.5.0 this issue was not present.
Hope it is clear now.