I\'m using Android Studio to develop and application and I\'d like that when a certain moment of time is met the application performs some defined action.
If you need to check some external databases once every X seconds/minutes, then you may consider using a Handler & Runnable with postDelayed() method to achieve what you need.