Changes between Version 12 and Version 13 of xiederong


Ignore:
Timestamp:
03/23/2015 06:01:01 PM (11 years ago)
Author:
xiederong
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • xiederong

    v12 v13  
    99目前开发中遇到的问题整理:[[BR]] 
    10101.在eclipse中配置的时候,解压出来的androidannotations-3.2.jar和androidannotations-api-3.2.jar两个jar中存在重复包,导致用gradle打包编译的时候报错[[BR]] 
    11 解决方法:只用androidannotations-3.2.jar这个包(因为它已经包含了androidannotations-api-3.2.jar),然后右键工程->Properties->Java Complier->Annoation Processin->Factory Path,导入工程中的androidannotations-3.2.jar,保存[[BR]] 
     11解决方法:只用androidannotations-3.2.jar这个包(因为它已经包含了androidannotations-api-3.2.jar)放到libs目录下,然后右键工程->Properties->Java Complier->Annoation Processin->Factory Path,导入工程中的androidannotations-3.2.jar,保存[[BR]] 
    12122.需要注意的问题[[BR]] 
    1313使用了AndroidAnnotations后,注册文件AndroidManifest.xml的组件后面要加下划线,例:android:name=".personal.SettingActivity(使用前);android:name=".personal.SettingActivity_(使用后);具体可参考官网例子[[BR]]