Alexey Timokhin
Alexey Timokhin
I think there is an error on the [Caveats Gotchas](https://github.com/instacart/truetime-android/wiki/Caveats---Gotchas) Wiki Page: `TrueTimeRx.initializeNtp("time.google.com")` should be `TrueTimeRx.build().initializeNtp("time.google.com")` as `initializeNtp` is non-static and should be called upon the instance.
https://github.com/codepath/android_guides/wiki/Retrieving-Location-with-LocationServices-API According to the wiki page we check whether the location settings are satisfied with the following lines: `SettingsClient settingsClient = LocationServices.getSettingsClient(this); settingsClient.checkLocationSettings(locationSettingsRequest);` But how exactly does it check and...
In presenters we have the dropView() method which sets the corresponding view to null. Is it possible that in two Fragments (of the same class) the same Presenter will be...