View YourCode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (BuildConfig.FLAVOR.equals(BuildConfig.FLAVOR_YOURFLAVOR)) { | |
// do something | |
} |
View method-tracing-android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Debug.startMethodTracing("filename"); | |
// code to trace | |
Debug.stopMethodTracing(); | |
Then | |
adb pull /sdcard/filename.trace /tmp | |
traceview// code to trace | |
Debug.stopMethodTracing(); |