我试图在我的应用程序中集成twitter登录,但是还没有成功。
https://dev.twitter.com/twitter-kit/android/twitter-login
在上面的链接中,它要求我们安装Twitter核心库
dependencies {
compile('com.twitter.sdk.android:twitter-core:1.3.1@aar') {
transitive = true;
}
}
但是,此库尚未下载。我总是抛出错误
Failed to resolve: com.twitter.sdk.android:twitter-core:1.3.1
我该怎么办?
答案 0 :(得分:8)
我刚刚使用下面的说明解决了您的问题:
你的构建脚本必须是这样的:
buildscript {
repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
2.您的build.gradle(app)必须是这样的:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.yourappname"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
repositories {
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
compile('com.twitter.sdk.android:twitter:1.5.1@aar') {
transitive = true
}
}
如果您有任何疑问,请尝试查看以下链接: https://github.com/twitter/twitter-kit-android
对我有用!希望它有所帮助!