I found the correct code on anther post:
Code:
static {
uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
uriMatcher.addURI("com.paad.provider.earthquake", "earthquakes", QUAKES);
uriMatcher.addURI("com.paad.provider.earthquake", "earthquakes/#", QUAKE_ID);
uriMatcher.addURI("com.paad.provider.earthquake", "live_folder", LIVE_FOLDER)
}