I have a problem with IntentService and cannot find solution. I have an UploadService class that extends IntentService.
public class UploadService extends IntentService {
@Override
protected void onHandleIntent(Intent intent) {
sendItems();
}
sendItems() - method used to send files to Parse. It modifies some files if needed (operates on external storage), then communication occurrs.
What are possible causes of UI freeze?