本文介绍了Android studio 3.0错误,如何解决?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我现在将android studio更新到3.0,但是当我尝试在我的项目上构建apk时,显示以下错误:

I just update my android studio to 3.0 now, but when I try to build apk on my project, it's shows following error:

项目取决于com.google.android.support:wearable:2.0.0,因此它还必须(作为提供的依赖项)依赖于com.google.android.wearable:wearable:2.0.0

我的build.gradle是这样的:

My build.gradle is like that:

dependencies {

    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile project(':lpd')
    compile 'com.google.android.support:wearable:2.0.0-alpha2'
    compile 'com.google.android.gms:play-services-wearable:9.4.0'
    compile files('libs/zxing_2.3.0.jar')
    compile(name: 'hwwearableservice-release', ext: 'aar')
    compile 'com.google.android.gms:play-services-appindexing:9.4.0'
}

有什么问题吗?

推荐答案

按照新的 gradle dependency instruction 不推荐使用compile,因此对于使用api的库,并使用最新的稳定lib版本作为2.1.0

As per the new gradle dependency instruction the compile has been deprecated so for libraries use api and use the latest stable lib version as 2.1.0

并且由于该版本是稳定版本,所以

and since the version is a stable release so

api 'com.google.android.support:wearable:2.1.0'

或者最好使用

implementation 'com.google.android.support:wearable:2.1.0'


implementation

api

这篇关于Android studio 3.0错误,如何解决?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 01:06