Supressed warnings of a third party library

151 Views Asked by At

I've added a library in my project which produces lot's of long warnings that get's all of my logcat and hardly I can find the warnings I really care about. I use filtering and searching but it's still annoying.
I can't remove library from project and I can't fix warning for now. How Can I supress this warning?

app/gradle

dependencies {
    implementation(name: 'OneSignal-3.6.3', ext: 'aar') {
        exclude group: 'com.google.android.gms', module: 'play-services-gcm'
        exclude group: 'com.google.android.gms', module: 'play-services-location'
        exclude group: 'com.google.android.gms', module: 'play-services-analytics'
        exclude group: 'com.android.support', module: 'customtabs'
        exclude group: 'com.android.support', module: 'support-v4'
    }
}

Warning :
https://gist.github.com/zeynaliAli/45f0e8a64991fbc85798ea1f11456298

0

There are 0 best solutions below