本文介绍了无法解析:com.twitter.sdk.android:tweet-composer Android Studio中摇篮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
compile('com.twitter.sdk.android:tweet-composer:0.8.0@aar')
{
transitive = true;
}
我得到了来自
但是,当同步在Android Studio项目下面的错误来了。
But when Sync the Android Studio project following error is coming ..
错误:(53 13)**无法解析:** com.twitter.sdk.android:鸣叫作曲家:0.8.0 ****
在显示结果的文件中显示项目结构对话框
Error:(53, 13) **Failed to resolve: **com.twitter.sdk.android:tweet-composer:0.8.0****Show in File
Show in Project Structure dialog
推荐答案
如上所述你必须改变模块中相同的部分的build.gradle
。
As described here you have to change same parts in your module build.gradle
.
在你的模块,你可以使用:
In your module you can use:
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
// The Fabric Gradle plugin uses an open ended version to
// react quickly to Android tooling updates
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
//Put Fabric plugin after Android plugin
apply plugin: 'io.fabric'
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
我建议你安装了Android工作室。
它可以帮助您配置脚本的gradle
It helps you to configure the gradle script.
这篇关于无法解析:com.twitter.sdk.android:tweet-composer Android Studio中摇篮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!