I am wondering what is the main difference between service and JobService in Android.
Asked
Active
Viewed 1,013 times
0
-
https://stackoverflow.com/questions/24613494/what-is-a-jobservice-in-android – ADM Apr 09 '19 at 07:59
1 Answers
0
Service is the parent class in Android Studio and JobService is the child or base class.
<service android:name="MyJobService"
android:permission="android.permission.BIND_JOB_SERVICE" >
...
</service>

Gajendra_kumar
- 19
- 2