Hello,
I am asking here because I was unable to find answer to my problem.
Last week I succeed to login twitter with my app, but I worked on android studio, with gradle. My problem is that now my company ask me to make it works but on eclipse, without using gradle (and if possible without maven, just using a downloaded sdk). To make it more complicated, I work with the twitter sdk 1.0.0 because my app have to work on old smartphones. Last thing, I am currently working in China, and cannot reach Twitter with fabric (I mean that the plugin doesn’t show me twitter stuff, I still can write about twitter kit manually), even when I use a vpn (I already sent an email to the fabric support to know why I couldn’t access it…)
Once again, it worked with android studio and gradle but I finally cannot use it… I post my graddle lines to give you an idea about what I try to have on eclipse :
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
[...]
apply plugin: 'io.fabric'
[...]
repositories {
maven { url 'https://maven.fabric.io/public' }
}
[...]
compile('com.twitter.sdk.android:twitter:1.0.0@aar') {
transitive = true;
}
I wish you can help me, I try to solve that for days … (I even think about start from scratch using twitter4j…)
Thank you in advance