pull/32/head
parent
e5c430dea9
commit
77e54fa5ad
@ -0,0 +1,12 @@ |
|||||||
|
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 |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
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 |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
package io.legado.app.service |
||||||
|
|
||||||
|
import android.app.Service |
||||||
|
import android.content.Intent |
||||||
|
import android.os.IBinder |
||||||
|
|
||||||
|
class ReadAloudService : Service() { |
||||||
|
override fun onBind(intent: Intent?): IBinder? { |
||||||
|
return null |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
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 |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
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 |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
package io.legado.app.service |
||||||
|
|
||||||
|
import android.app.Service |
||||||
|
import android.content.Intent |
||||||
|
import android.os.IBinder |
||||||
|
|
||||||
|
class WebService : Service() { |
||||||
|
override fun onBind(intent: Intent?): IBinder? { |
||||||
|
return null |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue