在 Android Studio 中找不到符号 class

Cannot find symbol class in Android Studio

我有两个项目 A 和 B,其中 B 作为项目 A 的模块添加。我在 A 的 Gradle 构建文件中添加了依赖项。现在我可以在 A 中导入 B 的 class 而不会出现任何错误(在编辑器中),但无法构建。首选项是项目 B 的 class。

错误

Error:(22, 23) error: cannot find symbol class Preferences 

A 的构建文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.0.0"

    defaultConfig {
        applicationId "com.example.A"
        minSdkVersion 9
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile project(':B')
}

B 的构建文件

import org.apache.tools.ant.taskdefs.condition.Os

apply plugin: "android-library"

android {
    compileSdkVersion 18
    buildToolsVersion "21.0.0"

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 11
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles 'proguard.cfg'
        }
    }
    sourceSets.main {
        jniLibs.srcDir 'src/main/jniLibs'
        jni.srcDirs = [] //disable automatic ndk-build call
    }

    task ndkBuild(type: Exec) {
        if (Os.isFamily(Os.FAMILY_WINDOWS)) {
            commandLine 'ndk-build.cmd', '-C', file('src/main/jni').absolutePath
        } else {
            commandLine '/opt/adt-bundle-linux/android-ndk-r8e/ndk-build', '-C', file('src/main/jni').absolutePath
        }
        tasks.withType(JavaCompile) {
            compileTask -> compileTask.dependsOn ndkBuild
        }
    }

}

dependencies {
    compile 'com.android.support:support-v4:18.0.0'
}

如果删除导入,我可以成功构建项目(A)。

我已经指出问题了。两个项目的 TargetSdk versionsupport package version 不一样。用最新版本更改这些后,我的问题就解决了。

对我来说这是一个类似的问题,但在 proguard conf 上。 proguard 在第一个库中处于活动状态,在第二个库中处于非活动状态。

在所有 build.gradle 上复制相同的 proguard conf 解决了 "cannot find symbol class" 错误。

我在向我的项目添加新模块时出现此错误。

要修复它,我也必须改变 minSdkVersion, targetSdkVersion, buildToolsVersion, 和 compileSdkVersion 以匹配我原始模块中的 build.gradle

在我做了这些事情之后错误仍然出现所以我将 minifyEnabled 设置为 false 然后它编译并且 运行!

如果库(无论是本地模块还是外部依赖项)有 minifyEnabled true,但库的 ProGuard 配置丢失或不正确(class 有资格通过删除混淆器)。这导致 class 没有被编译。

我遇到了类似的问题。我已经通过我的应用程序项目 A 中的本地 Maven 存储库实现了库 B。但是在构建 A 时,B 中的一些 类 无法解析,而其他人工作正常。在我的例子中,我不得不使caches/restart B无效,除此之外还删除B中的模块构建文件夹,重新编译B,并同步 A。这又是 AndroidStudio 中的一些奇怪错误,我花了几个小时才解决。