每次加载项目时,我都会收到以下错误,并且我已尝试在互联网上找到的所有内容来解决这些错误,例如
我尝试了许多帮助过很多人的导师,但它仍然不适合我。基本上它是我的全部依赖。昨天我开了一个朋友项目,把它放在他的演讲上为演讲者演示,但它所做的就是毁掉我的android工作室。有人可以帮忙吗?
错误:(33,13)无法解决:com.android.support:support-vector-drawable:25.0.1 在File中安装Repository并同步projectShow 在“项目结构”对话框中显示
错误:(24,24)无法解决:com.android.support.test.espresso:espresso-core:2.2.2 安装存储库和同步项目 在“项目结构”对话框中显示
错误:(24,24)无法解决:com.android.support.test.espresso:espresso-core:2.2.2 安装存储库和同步项目 在“项目结构”对话框中显示
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "ie.wit.fitnessmadeeasy"
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
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.0.1'
compile 'com.android.support:design:25.0.1'
compile 'com.android.volley:volley:1.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.1'
compile 'com.google.android.gms:play-services-maps:8.4.0'
compile 'com.android.support:support-vector-drawable:25.0.1'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
您需要安装支持存储库,如here所述: