#StrangeError 当我更改系统时,此问题仍然存在。我在一台新笔记本电脑上开了一个项目。 现在我可以运行一个应用程序,Gradle构建成功,但所有依赖项导入都没有解决,就像屏幕截图一样。
请注意,所有依赖项都会添加到应用内级build.gradle
,并且项目运行正常。
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "in.kpis.servertracker"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
dataBinding {
enabled = true
}
buildTypes {
debug {
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
useLibrary 'org.apache.http.legacy'
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}
def SUPPORT_LIB_VER = '27.0.2'
def BUTTER_KNIFE_VER = '8.8.1'
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':Baselib')
implementation "com.android.support:appcompat-v7:$SUPPORT_LIB_VER"
implementation "com.android.support:design:${SUPPORT_LIB_VER}"
implementation "com.android.support:cardview-v7:${SUPPORT_LIB_VER}"
implementation "com.android.support:recyclerview-v7:${SUPPORT_LIB_VER}"
implementation "com.jakewharton:butterknife:${BUTTER_KNIFE_VER}"
annotationProcessor "com.jakewharton:butterknife-compiler:${BUTTER_KNIFE_VER}"
}
Gradle构建成功,它不会显示任何错误。
我试过了
答案 0 :(得分:1)
有时会在你的项目中发生。
因此您需要删除项目目录中的 .Gradle文件夹。
Projectdirectory-> .gradle文件夹将其删除和
然后打开Android Studio并构建项目
谢谢!