twitter-archive / twitter-kit-android

Twitter Kit for Android
https://dev.twitter.com/twitterkit/android/overview
Apache License 2.0
832 stars 342 forks source link

Dependency instructions are overly complex #117

Open samtstern opened 6 years ago

samtstern commented 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.