use of org.thoughtcrime.securesms.service.UpdateApkReadyListener in project Signal-Android by WhisperSystems.
the class UpdateApkJob method handleDownloadNotify.
private void handleDownloadNotify(long downloadId) {
Intent intent = new Intent(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
intent.putExtra(DownloadManager.EXTRA_DOWNLOAD_ID, downloadId);
new UpdateApkReadyListener().onReceive(context, intent);
}
use of org.thoughtcrime.securesms.service.UpdateApkReadyListener in project Signal-Android by signalapp.
the class UpdateApkJob method handleDownloadNotify.
private void handleDownloadNotify(long downloadId) {
Intent intent = new Intent(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
intent.putExtra(DownloadManager.EXTRA_DOWNLOAD_ID, downloadId);
new UpdateApkReadyListener().onReceive(context, intent);
}
use of org.thoughtcrime.securesms.service.UpdateApkReadyListener in project mollyim-android by mollyim.
the class UpdateApkJob method handleDownloadNotify.
private void handleDownloadNotify(long downloadId) {
Intent intent = new Intent(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
intent.putExtra(DownloadManager.EXTRA_DOWNLOAD_ID, downloadId);
new UpdateApkReadyListener().onReceive(context, intent);
}
Aggregations