1 eclipse 过旧时,ant 运行不了,会报sdk.dir is missing.
需要配置:project.properties
sdk.dir=/home/gzhhong/Documents/sdk/
2 使用sdkmanager更新后,This Android SDK requires Andr...ate ADT to the latest
可以不更新ADT,修改
sdkHome\tools\lib下的plugin.prop文件修改其中的版本号,改为与所安装的ATD同版本号即可
?
# begin plugin.prop
plugin.version=20.0.0(修改这里)
# end plugin.prop
?
3 DDMS cannot find /tools/hprof-conf
Because new ?hprof-conf file is located at /platform-tools folder, not /tools
Then cp /platform-tools/hprof-conf /tools/
?