Android java.lang.IllegalArgumentException: No such service ComponentInfo JobScheduler
You need to add the permission android.permission.BIND_JOB_SERVICE
into your AndroidManifest.xml
...
<service android:name=".TestService"
android:permission="android.permission.BIND_JOB_SERVICE"
android:exported="true"/>
...
</application>
Try clean project. It was my case.