While debugging some Android instrumentation tests that were ran using ‘adb shell am instrument’, I needed to print some logs into the terminal/console to inspect the flow and resolve some…
Figuring out how to pull the current flavor from gradle While working on an update for one of our games, I needed to figure out how to get the current…
Did you know you can get the signing SHA1 and MD5 fingerprints within AndroidStudio? If you need the SHA1 or MD5 fingerprints of your Android debug/release key/certificate for a new API or…
The following snippet will help you generate a random number in Java that is between 2 numbers (min and max). static Random random = new Random(); /** * Min is…
This is just a small productivity A4 poster with MacOS IntelliJ IDEA and Android Studio key mapping that can be placed on your wall :). MacOS IntelliJ IDEA/AndroidStudio keyboard shortcuts
You might know about Realm, a fancy and practical storage option that one can use on Android. Realm is quite fast and it is really easy to work with but…