Open samtstern opened 6 years ago
In the README (and around the internet) the recommended way to include the twitter library is this:
compile('com.twitter.sdk.android:twitter:3.2.0@aar') { transitive = true }
As far as I am aware, this is completely equivalent to this:
compile 'com.twitter.sdk.android:twitter:3.2.0'
Android gradle infers the @aar and transitive is true by default.
@aar
transitive
true
In the README (and around the internet) the recommended way to include the twitter library is this:
As far as I am aware, this is completely equivalent to this:
Android gradle infers the
@aar
andtransitive
istrue
by default.