构建完成并运行,但在类android上显示错误

时间:2018-11-30 07:49:22

标签: android gradle android-appcompat

我在android studio上有一些奇怪的错误/错误,我的应用程序gradle已完成并且可以在设备上顺利运行,但是它显示的错误,例如我的库并未完全包含在android studio上,我已经这样做

  1. 先清理再重建
  2. 使缓存无效并重新启动

但没有任何效果,这是屏幕截图 Error importing and everything who use the class

Success gradle

这是我的应用程序摇篮

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
    applicationId "com.host.appname"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
    useLibrary 'org.apache.http.legacy'
    vectorDrawables.useSupportLibrary = true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        lintOptions {
            disable 'MissingTranslation'
        }
    }
}
productFlavors {
}
packagingOptions {
    exclude 'META-INF/NOTICE.txt' // will not include NOTICE file
    exclude 'META-INF/LICENSE.txt' // will not include LICENSE file
}

这是我的项目成果

    buildscript {
        repositories {
            jcenter()
            flatDir {
                dirs 'libs'
            }
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.3.3'
        }
    }

allprojects {
    repositories {
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

所以我可以运行我的应用程序,可以使用它,但是它确实使我难以编写代码,因为我无法在所有地方使用关于错误库和红色标记的自动完成功能。

谢谢..

1 个答案:

答案 0 :(得分:0)

  1. 删除行,然后从正确/兼容的软件包中重新导入它们。
  2. 尝试删除所有依赖项,然后进行同步,然后再次添加所有依赖项,然后进行同步。

正如您在comments nimi0112Ali Ahmed's中提到的那样,您的回答确实对我有很大帮助。