码迷,mamicode.com
首页 > 移动开发 > 详细

Android ant build cannot find symbol

时间:2014-08-13 17:52:16      阅读:849      评论:0      收藏:0      [点我收藏+]

标签:android   使用   文件   问题   div   new   ui   sp   

出现这种情况有两种原因:
 
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,布布扣,bubuko.com

Android ant build cannot find symbol

标签:android   使用   文件   问题   div   new   ui   sp   

原文地址:http://www.cnblogs.com/jhondge/p/3910360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!