Hi MoPub team,
I want to disable viewability measurement from mopub-android-sdk (just because the gradle sync from “s3.amazonaws.com” is extremely slow
),
I’ve done excluding related modules from sdk
implementation('com.mopub:mopub-sdk:4.20.0@aar') {
transitive = true
exclude module: 'libAvid-mopub' // To exclude AVID
exclude module: 'moat-mobile-app-kit' // To exclude Moat
}
and in gradle.properties
mopub.avidEnabled=false
mopub.moatEnabled=false
I’m not sure if the following line can be also removed in project gradle file?
maven { url "https://s3.amazonaws.com/moat-sdk-builds" }
Regards,
David