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

Using Kotlin in Production

Emma Guy
November 11, 2017

Using Kotlin in Production

Kotlin has fast become the new hotness in the Android world - but what is the reality of adding it to an app which is rapidly being built for a fast growing startup? In this talk we'll cover how we went about adding Kotlin to the Monzo app, why we made those choices and how it went.

https://devfest.gdg.london/schedule/2017-11-11?sessionId=204

Emma Guy

November 11, 2017
Tweet

More Decks by Emma Guy

Other Decks in Technology

Transcript

  1. Progressed to use in data layer of our app ...then

    in Activities (replacing ButterKnife) ...then anything new!
  2. fun card( id: String = UUID.randomUUID().toString(), expires: String = "24/20",

    cardStatus: CardStatus = CardStatus.ACTIVE ): Card { return Card(id, expires, cardStatus) } Card(expires = "03/16", cardStatus = CardStatus.INACTIVE)