Hi @vbisbest,
Thanks for reaching out!
Now that we have modularized our SDK, we offer the MoPub full SDK as well as modularized versions. The modularized versions allow you to decrease your overall SDK footprint in your app by implementing only the ad formats you want to work with.
Depending on the formats you want to work with, you can choose to integrate the full AAR or a modularized version.
You can find more information on our GitHub page.
If you are looking for support for all formats, we recommend integrating the full SDK via JCenter by adding the following to your build.gradle.
repositories {
jcenter()
}
dependencies {
compile('com.mopub:mopub-sdk:4.11.0@aar') {
transitive = true
}
}