我用 android studio 创建了一个演示磨损项目,没有接触任何东西。在 build.Gradle 中会发生此错误,尽管我发现它让应用程序编译很奇怪。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.support:wearable:1.4.0'
compile 'com.google.android.gms:play-services-wearable:9.4.0'
}
最佳答案
只需添加
provided com.google.android.wearable:wearable:2.0.2
到您的依赖项
编辑:
现在不推荐使用
provided
,像这样使用 compileOnly
:compileOnly com.google.android.wearable:wearable:2.0.2