【发布时间】:2017-09-03 13:37:16
【问题描述】:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
testCompile 'junit:junit:4.12'
// ButterKnife
compile 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
// Parse SDK
compile 'com.parse:parse-android:1.16.0'
}
这是我的应用程序 gradle 依赖项。我不知道该怎么做才能解决它。我已经尝试从 SDK Manager Android SDK Build Tools 26.0.1 安装,并且我也有最新版本的 Android 支持。
【问题讨论】:
标签: android android-support-library