Hi,
When we do a request, the notificationUri is not the given Uri but the authority Uri. It causes a cursor to be notified each time there is a change somewhere in the database. The notificationUri should be the queried Uri.
Current source generated :
Uri notificationUri = LeGorafiContent.CONTENT_URI;
[...]
if ((c != null) && !isTemporary()) {
c.setNotificationUri(getContext().getContentResolver(), notificationUri);
}
Julien
Hi,
When we do a request, the notificationUri is not the given Uri but the authority Uri. It causes a cursor to be notified each time there is a change somewhere in the database. The notificationUri should be the queried Uri.
Current source generated :
Uri notificationUri = LeGorafiContent.CONTENT_URI;
[...]
if ((c != null) && !isTemporary()) {
c.setNotificationUri(getContext().getContentResolver(), notificationUri);
}
Julien