I have a project that depends on another remote dependency. Is there a way to make it have those those include transitive dependencies by default, so that users don’t have to specify it?
This is what is currently needed by users: ‘’’ compile(‘io.segment.analytics.android:mixpanel:1.3.2-SNAPSHOT@aar’) {
transitive = true } ‘’’
I’d like them to be able to just simply do: ‘’’ compile(‘io.segment.analytics.android:mixpanel:1.3.2-SNAPSHOT@aar’) ‘’’