080: 10 Books Android developers should read

In this episode Donn and Kaushik recommend 10 books on Software programming that they think every Android developer would greatly benefit from reading. These are books that helped them become better programmers and have had the most impact in their daily lives as Android developers.

Direct download

Show Notes

  1. Effective Java – Joshua Bloch
  2. Working effectively with legacy code – Michael Feathers
  3. Head first Design Patterns
  4. Don’t make me think – Steve Krug, 3rd edition
  5. Java Concurrency in Practice
  6. XUnit testing patterns
  7. Patterns of Enterprise Application Architecture – Martin Fowler
  8. Javascript the good parts – Douglas Crockford
  9. Clean Code – Robert.C.Martin
  10. Coders at Work – Peter Seibel

Honorable mentions

Contact

079: How do i get started with VR apps? Etienne Caron explains

Have you ever thought about building VR (Virtual Reality) apps? Where do you start? How difficult is it? How similar is to Android development? Do you still code in Java? In this episode, Etienne Caron AndroidDev extraordinaire and expert VR hobbyist gets us up to speed on what you need to know, to start creating VR apps.

Download directly

Show Notes

Contact

078: Ten Testing Strategies with Michael Bailey

In this episode, Donn sits down with fellow Android GDE, Michael Bailey to cover 10 testing strategies to help you get your application under test and to make sure your testing environment is top notch. They start off with the basics and then progress further down the testing rabbit hole eventually covering topics like cloud-based testing labs, hermetic testing and much much more. This episode will help provide you with a blueprint of how to get your Android app under test and get you to a level where you can develop your app with confidence.

Download

The Ten Tips

  1. Use Espresso for functional/integration testing
  2. Mock data and API endpoints to keep tests hermetic
  3. Utilize JUnit JVM Tests and patterns for a fast dev cycle
  4. Utilize a git branching strategy and utilize pull requests (PR’s) for code reviews
  5. Use CI to run the tests and provide constant feedback
  6. Speed up testing and ease of testing with shell helpers and helper classes for testing
  7. Cloud Testing Services
  8. Mutation Testing
  9. Thoughts on code coverage & value based testing
  10. Don’t let flaky tests linger

Show Notes

Contact

077: Chatting ADB with Genymotion’s Eyal Lezmy

Today on Fragmented, we talk to Eyal Lezmy. Eyal works as an Android developer for Genymotion. While working for Genymotion he had to deal with the Android Debug Bridge a whole bunch, so in this episode we dive into the details of ADB, some super slick commands and in general just get a better understanding of this tool we use every single day.

Download directly

Show Notes

Helpful commands

# input some text from your keyboard
adb shell input text "keyboard text"
# download database file
# see http://stackoverflow.com/questions/18471780/android-adb-retrieve-database-using-run-as
adb exec-out run-as package.name cat databases/file > file
# run-as mentioned in episode
adb shell "run-as package.name chmod 666 /data/data/package.name/databases/file"

Sponsors

Contact

076: Taming the activity lifecycle with Kristin Marsicano

In this episode Kaushik talks to Kristin of the Big Nerd Ranch. You would think that the Android lifecycle is pretty standard and basic stuff, but as Kristin begins to unpack the nuances of the Android lifecycle, we learn there’s a world of details that’s easy to miss. Listen on, to get an ironclad grip on the Activity lifecycle.

Download directly

Show Notes

Sponsors

Contact