Location Reminder

Note: This project constitutes Udacity’s Android Kotlin Developer Nano-degree Program

Description

Do you recall the moment you walked past a local grocery store, and forgot to grab the milk? Not anymore!

Location Reminder App aims to address exactly that – where user can select a point-of-interest(POI) on the map, and set for themselves a to-do reminder. When the user enters the geofence (set to: 100 meters) of the POI, the app triggers a notification.

Topics/Skills covered as part of this project

The aim of this project is to showcase the following skills:

private val dataBindingIdlingResource = DataBindingIdlingResource()


    @Before
    fun registerIdlingResources() {
        IdlingRegistry.getInstance().register(EspressoIdlingResource.countingIdlingResource)
        IdlingRegistry.getInstance().register(dataBindingIdlingResource)
    }

    @After
    fun unregisterIdlingResources() {
        IdlingRegistry.getInstance().unregister(EspressoIdlingResource.countingIdlingResource)
        IdlingRegistry.getInstance().unregister(dataBindingIdlingResource)
    }
    

GitHub

View Github