Android studio not fetching libs for my android twitter app -


dependencies {    compile('com.twitter.sdk.android:tweet-ui:1.2.0@aar') {        transitive = true;     } } 

as described in https://dev.twitter.com/twitter-kit/android/twittercore

but not importing library

android studio error

error:failed resolve: com.twitter.sdk.android:twitter-core:1.3.3

did include fabric/twitter maven repository @ top of build.gradle?

buildscript {     repositories {         maven { url 'https://maven.fabric.io/public' }     }      dependencies {         classpath 'io.fabric.tools:gradle:1.+'     } } 

Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -