use of android.app.job.JobWorkItem in project android_packages_apps_Dialer by LineageOS.
the class TranscriptionService method makeWorkItem.
private static JobWorkItem makeWorkItem(Uri voicemailUri, PhoneAccountHandle account) {
Intent intent = new Intent();
intent.putExtra(EXTRA_VOICEMAIL_URI, voicemailUri);
if (account != null) {
intent.putExtra(EXTRA_ACCOUNT_HANDLE, account);
}
return new JobWorkItem(intent);
}
Aggregations