Skip to content

Instantly share code, notes, and snippets.

View garethbowen's full-sized avatar
🏠
Working from home

Gareth Bowen garethbowen

🏠
Working from home
View GitHub Profile
@garethbowen
garethbowen / branding.md
Created June 22, 2015 23:22
Branding of android app

Partners want to be able to brand the android app with their name and logo. We can either a) publish n apps (one for each parter), or b) publish one app and replicate branding in the ddoc.

Option A pros

  • technically simple
  • flexible
  • correct branding will be shown in the app store

Option B pros

@garethbowen
garethbowen / plan.md
Last active August 29, 2015 14:22
Medic Mobile remove lucene dependency

The problem

Lucene is used primarily for filtering reports and contacts so you wouldn't be able to search without it. We used lucene to

  • allow for multiple filters to be applied which couchdb views cannot do, and
  • allow for complex freetext filters

We want to use pouchdb for the mobile app for local and offline storage but pouchdb doesn't work with lucene. Ideally both webapp and mobile app would use the same solution for consistency and code reuse.

Solution