pull/32/head
parent
bf9803681a
commit
f9525a2d24
@ -1,12 +1,8 @@ |
||||
package io.legado.app.service |
||||
|
||||
import android.app.Service |
||||
import android.content.Intent |
||||
import android.os.IBinder |
||||
|
||||
class CheckSourceService : Service() { |
||||
override fun onBind(intent: Intent?): IBinder? { |
||||
return null |
||||
} |
||||
import io.legado.app.base.BaseService |
||||
|
||||
class CheckSourceService : BaseService() { |
||||
|
||||
|
||||
} |
@ -1,12 +1,8 @@ |
||||
package io.legado.app.service |
||||
|
||||
import android.app.Service |
||||
import android.content.Intent |
||||
import android.os.IBinder |
||||
|
||||
class DownloadService : Service() { |
||||
override fun onBind(intent: Intent?): IBinder? { |
||||
return null |
||||
} |
||||
import io.legado.app.base.BaseService |
||||
|
||||
class DownloadService : BaseService() { |
||||
|
||||
|
||||
} |
@ -1,12 +1,8 @@ |
||||
package io.legado.app.service |
||||
|
||||
import android.app.Service |
||||
import android.content.Intent |
||||
import android.os.IBinder |
||||
|
||||
class ShareService : Service() { |
||||
override fun onBind(intent: Intent?): IBinder? { |
||||
return null |
||||
} |
||||
import io.legado.app.base.BaseService |
||||
|
||||
class ShareService : BaseService() { |
||||
|
||||
|
||||
} |
@ -1,12 +1,8 @@ |
||||
package io.legado.app.service |
||||
|
||||
import android.app.Service |
||||
import android.content.Intent |
||||
import android.os.IBinder |
||||
|
||||
class UpdateService : Service() { |
||||
override fun onBind(intent: Intent?): IBinder? { |
||||
return null |
||||
} |
||||
import io.legado.app.base.BaseService |
||||
|
||||
class UpdateService : BaseService() { |
||||
|
||||
|
||||
} |
@ -1,12 +1,12 @@ |
||||
package io.legado.app.service |
||||
|
||||
import android.app.Service |
||||
import android.content.Intent |
||||
import android.os.IBinder |
||||
import io.legado.app.base.BaseService |
||||
|
||||
class WebService : Service() { |
||||
override fun onBind(intent: Intent?): IBinder? { |
||||
return null |
||||
class WebService : BaseService() { |
||||
|
||||
|
||||
override fun onCreate() { |
||||
super.onCreate() |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue