出现这种情况有两种原因:
1. class 被exclude (ant 不会exclude )
2. import 内部类的内部类 比如
import IA.IIA;
class A{
class IA {
class IIA{
}
}
public void method(){
//会报 IA cannot find symbol
IIA a = new IIA();
}
}
解决办法:
问题1. 将exclude 的文件删除
问题2. 将import IA.IIA 删掉
使用 IA.IIA a = new IA.IIA();
Android ant build cannot find symbol
时间: 2024-10-09 13:27:46