Mopub Integration for Android Studio

On this issue, I could not find any resources or help on how to integrate the Mopub library project into Android Studio, as it is still only documented for Eclipse.

I used the Facebook article on integrating my library into Android Studio as a guide, but there are still problems. For reference, here is their article: https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android-using-android-studio/3.0/

Does everyone have a step-by-step process of integrating MoPub into Android Studio?

+3
android android-studio integration mopub
source share
3 answers

I recently found this. https://github.com/minakov/mopub-sdk-android-aar/tree/master

Following the instructions on the repo reading page, I was able to configure the mopub SDK as a dependency in my Android Studio project.

Hope this helps someone

+1
source share

I solved this, just add mopub sdk as a new module. You can see the details in this post.

+1
source share

As mentioned in the Readme file of the Github project. You can add a dependency to your Android gradle project.

Just add the following lines to the build.gradle file.

repositories { maven { url "http://minakov.imtqy.com/mopub-sdk-android-aar" } } dependencies { compile 'com.mopub.mobileads:mopub-android: +@aar ' } 

After that, just sync your project and you're good to go.

0
source share

All Articles