Re: [android] History of Android code architecture

2016-04-15 Thread Stefan Arentz
> On Apr 15, 2016, at 4:43 AM, Sebastian Kaspari wrote: … > Regarding libraries that introduce new patterns: I'm reserved - They make > life simpler at times but they come with a cost: You need to learn how to use > them. New volunteers might not be able to contribute without learning the >

Re: [android] History of Android code architecture

2016-04-15 Thread Sebastian Kaspari
I want to throw in another video from last year's Android Dev Summit in Mountain View: Android Application Architecture https://www.youtube.com/watch?v=BlkJzgjzL0c I've been looking at MVVM too but I haven't fully used it in an Android app to have an opinion. Regarding libraries that introduce n

Re: [android] History of Android code architecture

2016-04-12 Thread Steph Leroux
> > >- Isolate state. >- Pursue immutability and idempotency. >- Separate state changes from presentation changes. >- Don't be afraid of transforming state into the minimal >representation necessary for display. > > Just wanted to briefly chime in and mention a great architectur

Re: [android] History of Android code architecture

2016-04-12 Thread Richard Newman
Emily has recently been exploring state-driven frontend design on iOS for her menu work; I'd like to see her chime in here with her experiences. My 2¢: > I've noticed that these patterns are not something that we've been > explicitly doing on this team but could potentially benefit from – does >