Share some of the useful gadgets in Android development, have you found good tools? Come here and share it.
One, find bugs static Check tool
http://findbugs.sourceforge.net/
FindBugs is a static analysis tool that examines a class or JAR file to compare bytecode with a set of defect patterns to identify possible problems. With the static analysis tool, you can analyze the software without actually running the program
For more information, please refer to: http://baike.baidu.com/view/2367937.htm
Second, Beta Bao-Test distribution management platform
The most comprehensive test distribution management platform in China, developers just need to simply put the hit apk upload, you can invite all team members to participate in the test, the tester in the mobile browser to open the link, immediately can install the latest test version, easy to make people want to cry.
For more information, please refer to: https://neicebao.com/
Third, the Android unused resource file Lookup tool
In the process of development and version updating, many unused or redundant resource files are often generated in the project, and a small tool can be used to detect redundant resource files at the time of release, thus streamlining the apk file size.
http://code.google.com/p/android-unused-resources/
Put the Androidunusedresources1.6.2.jar file in the root of the project and run the command "Java-jar Androidunusedresources.jar" on the command line to list the extra resource files.
Four, the log method after reducing confusion
The Sdk\tools\proguard\bin directory has a Retrace.bat tool to decode the garbled error stack into a normal class name
Use the following method
Save your error stack to a file, such as Obfuscated_trace.txt
Get the Mapping.txt generated when the version is released
Execute command retrace.bat-verbose mapping.txt obfuscated_trace.txt
Details: http://developer.android.com/tools/help/proguard.html