A simple android calculator app.
The app is using a very basic MVP setup, the presenter handles changes to the current calculation and returns the relevant responses to the view.
Calculations are handled using some logic from http://stackoverflow.com/a/26227947
The presenter is unit tested using Mockito to help Mock some classes.