gpt4 book ai didi

android - 类型推断失败。 Firebase JobDispatcher

转载 作者:行者123 更新时间:2023-11-29 15:00:05 27 4
gpt4 key购买 nike

我在这一行遇到以下错误:.setService(LocationFirebaseJobService::class.java) :

类型推断失败。预期类型不匹配:推断类型为 Class<LocationFirebaseJobService>但是Class<out JobService!>预计

这是我的代码:

val dispatcher = FirebaseJobDispatcher(GooglePlayDriver(context))

val myJob = dispatcher.newJobBuilder()
.setService(LocationFirebaseJobService::class.java)
.setTag("my-unique-tag")
.build()

我的 LocationFirebaseJobService 类:

class LocationFirebaseJobService: JobService() {

override fun onStartJob(p0: JobParameters?): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}

override fun onStopJob(p0: JobParameters?): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}

}

最佳答案

您确定扩展了正确的 JobService 吗?Firebase 提供 com.firebase.jobdispatcher.JobService 但 Android 在 API 级别 21 之后提供 android.app.job.JobService (Firebase 是此 API 的兼容版本)

在 LocationFirebaseJobService 中检查您的导入

关于android - 类型推断失败。 Firebase JobDispatcher,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48056148/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com