简体   繁体   中英

Latest Tapjoy adapter not compiling in Android

I'm implementing Admob's mediation and I'm struggling to add the latest version of Tapjoy's adapter. The thing is, if I declare version 12.7.1.0 (old version), it works, but warns me there's a new version:

在此处输入图像描述

But if I change it to the latest version 12.8.0.0, it doesn't give any error while syncing. But it just doesn't launch the app with an error:

在此处输入图像描述

It is fixed by adding this to gradle repositories:

allprojects {
    repositories {
        ...
        maven {
            url "https://sdk.tapjoy.com/"
        }
    }
}

With only mavenCentral it seems to not throw any error but for version 12.8.0.0 or superior, tapjoy's maven repo is specifically needed

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM