Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building It Twice - San Jose, Costa Rica, September 2015

Ellen Shapiro
September 03, 2015

Building It Twice - San Jose, Costa Rica, September 2015

An updated version of my talk about building the same app for iOS and Android!

At the end of the talk I mentioned two open source projects that Vokal uses to work with mock data:
https://github.com/vokal/VOKMockUrlProtocol for iOS
https://github.com/vokal/Mocktrofit/ for Android

Ellen Shapiro

September 03, 2015
Tweet

More Decks by Ellen Shapiro

Other Decks in Technology

Transcript

  1. Building It Twice Lessons from building apps natively for iOS

    and Android September 2015 | DevAndDesignCR | San José, Costa Rica by Ellen Shapiro vokal.io | justhum.com | designatednerd.com | @DesignatedNerd
  2. What does the app do? —Helps distributors sell more of

    a high-end brand of hard liquor with profit calculators
  3. What does the app do? —Helps distributors sell more of

    a high-end brand of hard liquor with profit calculators —Keeps distributors in touch with news from the brand
  4. What does the app do? —Helps distributors sell more of

    a high-end brand of hard liquor with profit calculators —Keeps distributors in touch with news from the brand —Gives distributors access on the go to assets they can use to promote the brand.
  5. How was the app built? —Built iOS and Android at

    the same time —Team of 3 iOS and 3 Android developers (not including myself)
  6. How was the app built? —Built iOS and Android at

    the same time —Team of 3 iOS and 3 Android developers (not including myself) —Very, very well defined design from direct client
  7. How was the app built? —Built iOS and Android at

    the same time —Team of 3 iOS and 3 Android developers (not including myself) —Very, very well defined design from direct client —API built and managed by end client...less well.
  8. What went well? What: Extremely clear style guide from the

    agency Effect: Devs created reusable styles and classes, changes could be made once, applied everywhere.
  9. What went well? What: Extremely clear style guide from the

    agency Effect: Devs created reusable styles and classes, changes could be made once, applied everywhere. Lesson: Spending time on a clear style guide in design can save a lot of time in development.
  10. What went well? What: Designs and wireframes took platform- specific

    patterns into account. Effect: Devs didn't need to ask questions about how something should work on iOS vs. Android.
  11. What went well? What: Designs and wireframes took platform- specific

    patterns into account. Effect: Devs didn't need to ask questions about how something should work on iOS vs. Android. Lesson: Think through how different platform conventions affect the user flow at design time.
  12. What went well? What: Platform teams would work on different

    features at the same time. Effect: Each team was able to tell the other about potential land mines in that feature before building.
  13. What went well? What: Platform teams would work on different

    features at the same time. Effect: Each team was able to tell the other about potential land mines in that feature before building. Lesson: If you're building in parallel, don't always have all teams building the same thing.
  14. What went poorly? What: While iOS only had to support

    the current version (iOS 6), Android had to support Gingerbread.
  15. What went poorly? What: While iOS only had to support

    the current version (iOS 6), Android had to support Gingerbread. Effect: The same feature on Android 2.3 would take multiples of the effort it took to build on iOS 6.
  16. What went poorly? What: While iOS only had to support

    the current version (iOS 6), Android had to support Gingerbread. Effect: The same feature on Android 2.3 would take multiples of the effort it took to build on iOS 6. Lesson: Think hard about effort to support a platform vs. # of customers using that platform.
  17. What went poorly? What: Backend team was behind schedule, changing

    environment without notifying app devs Effect: When something would go wrong, it would waste twice as much time.
  18. What went poorly? What: Backend team was behind schedule, changing

    environment without notifying app devs Effect: When something would go wrong, it would waste twice as much time. Lesson: Set up clear times for updates and clear channels for communication.
  19. What went poorly? What: Neither the iOS nor Android teams

    wrote many tests. Effect: When something broke, we didn't know until much later, and it was hard to find the cause.
  20. What went poorly? What: Neither the iOS nor Android teams

    wrote many tests. Effect: When something broke, we didn't know until much later, and it was hard to find the cause. Lesson: Writing tests costs time up front, but saves time later.
  21. What does the app do? —Allows users to request their

    car from their phone and pay/tip with a credit card.
  22. What does the app do? —Allows users to request their

    car from their phone and pay/tip with a credit card. —Notifies valets when a car has been requested.
  23. What does the app do? —Allows users to request their

    car from their phone and pay/tip with a credit card. —Notifies valets when a car has been requested. —Notifies users when their car is being retrieved.
  24. What does the app do? —Allows users to request their

    car from their phone and pay/tip with a credit card. —Notifies valets when a car has been requested. —Notifies users when their car is being retrieved. —Gives users a cashless valet experience
  25. What does the app do? —Allows users to request their

    car from their phone and pay/tip with a credit card. —Notifies valets when a car has been requested. —Notifies users when their car is being retrieved. —Gives users a cashless valet experience —Users don't wait for their car in the rain / cold.
  26. How was the app built? —Built iOS MVP, then built

    Android client as iOS added new features.
  27. How was the app built? —Built iOS MVP, then built

    Android client as iOS added new features. —Single-developer team per platform (i.e., I built 90% of both MVP apps myself #humblebrag)
  28. How was the app built? —Built iOS MVP, then built

    Android client as iOS added new features. —Single-developer team per platform (i.e., I built 90% of both MVP apps myself #humblebrag) —In-house design by Vokal
  29. How was the app built? —Built iOS MVP, then built

    Android client as iOS added new features. —Single-developer team per platform (i.e., I built 90% of both MVP apps myself #humblebrag) —In-house design by Vokal —In-house backend by Vokal
  30. What went well? What: Backend team was well ahead of

    schedule for initial iOS build, APIs were well-documented
  31. What went well? What: Backend team was well ahead of

    schedule for initial iOS build, APIs were well-documented Effect: I rarely ran out of stuff to do and was almost never blocked by backend issues
  32. What went well? What: Backend team was well ahead of

    schedule for initial iOS build, APIs were well-documented Effect: I rarely ran out of stuff to do and was almost never blocked by backend issues Lesson: App dev is hard without a working backend. Get your BE team ahead as far as possible.
  33. What went well? What: iOS app was built to MVP

    before Android app build started.
  34. What went well? What: iOS app was built to MVP

    before Android app build started. Effect: Issues only needed to be fixed once. User feedback was addressed before Android started.
  35. What went well? What: iOS app was built to MVP

    before Android app build started. Effect: Issues only needed to be fixed once. User feedback was addressed before Android started. Lesson: Building sequentially can save time on subsequent apps.
  36. What went well? What: Thorough, clearly named UI and behavior-

    driven tests for iOS were written Effect: Test names/comments could be lifted to start tests on Android, saving even more time.
  37. What went well? What: Thorough, clearly named UI and behavior-

    driven tests for iOS were written Effect: Test names/comments could be lifted to start tests on Android, saving even more time. Lesson: Having the 1st app tested makes it easier to ensure later apps are testing/doing the same thing
  38. What went poorly? What: I vastly underestimated how much I

    had to relearn and how much had changed in Android dev
  39. What went poorly? What: I vastly underestimated how much I

    had to relearn and how much had changed in Android dev Effect: A lot of gains from the things that went well were cashed in on rewriting functionality and tests.
  40. What went poorly? What: I vastly underestimated how much I

    had to relearn and how much had changed in Android dev Effect: A lot of gains from the things that went well were cashed in on rewriting functionality and tests. Lesson: Either get a specialist, or add significant padding to account for ramp-up on a platform.
  41. What went poorly? What: User feedback was not sought out

    before we started building due to budget concerns.
  42. What went poorly? What: User feedback was not sought out

    before we started building due to budget concerns. Effect: Users, especially Valets, had very different ideas of required functionality than we had, causing a lot of rework.
  43. What went poorly? What: User feedback was not sought out

    before we started building due to budget concerns. Effect: Users, especially Valets, had very different ideas of required functionality than we had, causing a lot of rework. Lesson: Don't wait to reach out to your user base.
  44. Obligatory Summary Slide™ —Style guides: Not just for the web

    anymore! —Get user feedback before you start building
  45. Obligatory Summary Slide™ —Style guides: Not just for the web

    anymore! —Get user feedback before you start building —Get backend development as far ahead of client app development as possible
  46. Obligatory Summary Slide™ —Style guides: Not just for the web

    anymore! —Get user feedback before you start building —Get backend development as far ahead of client app development as possible —Functional/Behavior tests are far easier to repeat across platforms
  47. Obligatory Summary Slide™ —Style guides: Not just for the web

    anymore! —Get user feedback before you start building —Get backend development as far ahead of client app development as possible —Functional/Behavior tests are far easier to repeat across platforms —Communicate early and often