我有两个项目A和B,其中B被添加为项目A的模块。我在A&#39的Gradle构建文件中添加了依赖项。现在我可以在A中导入B类,没有任何错误(在编辑器中),但是无法构建。首选项是一类项目B.
Error:(22, 23) error: cannot find symbol class Preferences
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')
}
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)。
答案 0 :(得分:43)
如果库(无论是本地模块还是外部依赖项)具有minifyEnabled true
,但库的ProGuard配置缺失或不正确(该类有资格通过ProGuard删除),可能会发生这种情况。这导致课程没有被编译。
答案 1 :(得分:10)
对我而言,这是一个类似的问题,但在proguard conf。 proguard在第一个库中处于活动状态,在第二个库中处于非活动状态。
Copie在所有build.gradle上的相同proguard conf已解决了“找不到符号类”的错误。
答案 2 :(得分:5)
我已经指出了这个问题。两个项目的TargetSdk version
和support package version
不相同。用最新版本更改后,我的问题就解决了。
答案 3 :(得分:1)
当我向项目添加新模块时出现此错误。
要修复它,我也必须改变
minSdkVersion
,
targetSdkVersion
,
buildToolsVersion
,和
compileSdkVersion
以匹配原始模块中的build.gradle
。
在我做了这些事情之后,错误仍然存在,所以我将minifyEnabled
设置为false
,然后编译并运行!
答案 4 :(得分:0)
我有类似的问题。我已经通过我的应用程序项目A中的本地Maven存储库实现了库B。但是在构建A时无法解析B中的某些类,而其他类则工作正常。就我而言,除了必须删除B中的模块构建文件夹,重新编译B并同步A外,我还必须使缓存无效/重启 B。 AndroidStudio中出现了一个怪异的错误,这使我花了数小时才能解决。