0

How to remove a complete package from different modules. None of these solutions are working:

dependencies {
    compile (project(':..:libraries:utilities')) {
        exclude group: 'com.test.utils'
    }
}

Or

configurations {
    all*.exclude group: 'com.test.utils', module: 'utilities'
}

Any help?

mins
  • 6,478
  • 12
  • 56
  • 75
faiziii
  • 371
  • 4
  • 11
  • Check this: http://stackoverflow.com/questions/16710290/how-to-delete-a-module-in-android-studio – Krupa Patel Apr 13 '15 at 05:59
  • I don't want to delete my module at all, I just when to remove some packages from different module at compile time using gradle. – faiziii Apr 13 '15 at 06:16

0 Answers0