Java SE相关
删除eclipse自动生成的//TODO Auto-generated
构造器的TODO顺便也删除安卓相关
eclipse无法导出android签名包的问题
Export aborted because fatal lint errors were found.These are listed in the Problems view.Either fix these before running Export again,or turn off "Run full error check when exporting app" in the Android > Lint Error checking preference page.
解决:
升级了sdk之后运行出错
Failed to load D:\Android-Studio\sdk\build-tools\26.0.1\lib\dx.jar
Unable to build: the file dx.jar was not loaded from the SDK folder
解决:
查看可用sdk可用的buildtools并设置
add this in the project.properties of your project:
sdk.buildtools=25.0.2
参考
- 删除eclipse自动生成的//TODO Auto-generated - 黄彪博客 - CSDN博客
https://blog.csdn.net/hbiao68/article/details/52682823
网友评论