我的项目还可以,然后我重新打开它,得知我应该升级Gradle插件,sdk(现在是v.27)appcompat(v.27)等等然后它不再同步了。我得到的信息是:
Gradle sync失败:路径必须是规范但得到:'C:/ Users / ..(等一些文件夹)../ libs / additionnal.jar!
试图将这个以及另外两个(现在有问题的)库移到像c:\abc\
这样的简单路径上,但没有任何改变。
已将存储库网址更改为http://repo.maven.apache.org/maven2
,事情并没有好转。
请注意一下这个?已经搜索了很多,没有。谢谢。
编辑:下面是我的build.gradle
。好奇的是:此文件中唯一指向的错误与compile 'com.android.support:appcompat-v7:27.0.2'
相关的行相关(在项目中声明相同的版本)。
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.packagename.appname"
minSdkVersion 16
targetSdkVersion 27
versionCode 2
versionName "2.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
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:27.0.2'
compile 'com.andreabaccega:android-form-edittext:1.2.1'
compile 'com.amitshekhar.android:android-networking:0.4.0'
compile 'com.github.bumptech.glide:glide:3.8.0'
compile 'com.wang.avi:library:2.1.3'
compile 'com.android.volley:volley:1.0.0'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.google.android.gms:play-services-maps:10.2.0'
compile 'com.google.android.gms:play-services-location:10.2.0'
compile 'com.google.android.gms:play-services-wearable:10.2.0'
compile 'org.jsoup:jsoup:1.10.2'
testCompile 'junit:junit:4.12'
}