Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fabiendevos
fabiendevos / YourCode.java
Last active October 26, 2015 20:36
Generating constants for all flavors (type-safe, unlike using a string)
if (BuildConfig.FLAVOR.equals(BuildConfig.FLAVOR_YOURFLAVOR)) {
// do something
}
@fabiendevos
fabiendevos / method-tracing-android
Created March 17, 2015 22:59
Method tracing android
Debug.startMethodTracing("filename");
// code to trace
Debug.stopMethodTracing();
Then
adb pull /sdcard/filename.trace /tmp
traceview// code to trace
Debug.stopMethodTracing();