Skip to content

Instantly share code, notes, and snippets.

@afiqiqmal
Created December 9, 2017 02:30
Show Gist options
  • Save afiqiqmal/fd0c68329a46f700e37be41a94c702e8 to your computer and use it in GitHub Desktop.
Save afiqiqmal/fd0c68329a46f700e37be41a94c702e8 to your computer and use it in GitHub Desktop.
Excluding multiple group from Android dependencies gradle
dependencies {
compile ('pl.charmas.android:android-reactive-location2:2.0@aar') {
['com.android.support', 'com.google.android.gms', 'io.reactivex.rxjava2'].each{
exclude group: it
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment