Skip to content

azzumw/Project4

Repository files navigation

Location Reminder

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

Description

Don’t you just hate it when you’ve walked past the local grocery store, and forgot to grab the milk? Not anymore!

Location Reminder App (LRA) will make forgetting the milk (and anything else) a thing of the past! LRA allows you to select a point-of-interest(POI) on the map, and set for yourself a to-do reminder. With LRA in your pocket, now when you’re within a 100 metres (default geofence app setting of 100 meters) of the POI (or the grocery shop) you’ll get a notification reminding you to grab that milk - you’ll never have to endure a black coffee or dry cereal ever again.

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)
    }