├── .gitignore ├── README.md ├── _config.yml ├── logo.png └── recruitment ├── architecture_questions.md ├── code_challenge.md ├── design_questions.md ├── interview_stages.md └── positions ├── android_chapter_lead.md ├── android_engineer.md └── open_positions.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/_config.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/logo.png -------------------------------------------------------------------------------- /recruitment/architecture_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/architecture_questions.md -------------------------------------------------------------------------------- /recruitment/code_challenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/code_challenge.md -------------------------------------------------------------------------------- /recruitment/design_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/design_questions.md -------------------------------------------------------------------------------- /recruitment/interview_stages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/interview_stages.md -------------------------------------------------------------------------------- /recruitment/positions/android_chapter_lead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/positions/android_chapter_lead.md -------------------------------------------------------------------------------- /recruitment/positions/android_engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/positions/android_engineer.md -------------------------------------------------------------------------------- /recruitment/positions/open_positions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/babylonhealth/android-playbook/HEAD/recruitment/positions/open_positions.md --------------------------------------------------------------------------------