Here is the issue that showed in a logcat.
Unable to start service .DownloadService@489b627 with Intent { cmp=package/.DownloadService (has extras) }: java.lang.NullPointerException
I'm getting this issue after with Android 26 or higher.
I'm using startForegroundService and added permission in the manifest
if (Build.VERSION.SDK_INT >= 26) {
home.this.mContext.startForegroundService(intent);
} else {
home.this.mContext.startService(intent);
}