When I updated a file from a device app which is registered with same app key then the same file from one other device not get notified that it is changed but when i change the same file from Dropbox it self it get notified. Below is my code
[[DBFilesystem sharedFilesystem] addObserver:self forPathAndChildren:pathDB block:^(){
DBError *error= nil;
NSLog(@"File(s) %@ changed!",pathDB);
}];
Please help me