我正在尝试在 Android 上实现后台同步。
当模拟器(API 30)唤醒并解锁时,它工作得很好。
但是如果我退出应用程序(不是强制退出,只是从最近的应用程序中删除)并锁定模拟器屏幕 - 最终我将开始收到以下错误:
D/Error: Unable to resolve host "jsonplaceholder.typicode.com": No address associated with hostname
I/WM-WorkerWrapper: Worker result FAILURE for Work [ id=5cfe9175-b6f8-4aa8-8cbc-7d507915a77d, tags={ com.better.alarm.workers.SyncEventsWorker } ]
我没有在设备上启用省电模式,并且运行模拟器的 PC 上的互联网连接非常好且稳定。RAM 不是问题。
这是我的工人:
class SyncEventsWorker(appContext: Context, workerParams: WorkerParameters) :
Worker(appContext, workerParams) {
private val client = OkHttpClient()
@Serializable
data class Event(val userId: Int, val id: Int, val title: String, val completed: Boolean)
override fun doWork(): Result {
try {
getEvents()
} catch (e: IOException) {
Log.d("Error", e.localizedMessage)
return Result.failure()
}
return Result.success()
}
private fun getEvents(): Array<Event> {
val request = Request.Builder()
.url("https://jsonplaceholder.typicode.com/todos")
.build()
client.newCall(request).execute().use { response ->
if (!response.isSuccessful) throw IOException("Unexpected code $response")
val body = response.body!!.string()
return Json.decodeFromString(body)
}
}
}
这就是我安排工作的方式:
class MyApplication : Application() {
override fun onCreate() {
val uploadWorkRequest: WorkRequest =
PeriodicWorkRequestBuilder<SyncEventsWorker>(PeriodicWorkRequest.MIN_PERIODIC_INTERVAL_MILLIS, TimeUnit.MILLISECONDS)
.build()
WorkManager
.getInstance(this)
.enqueue(uploadWorkRequest)
}
}
当模拟器进入“深度睡眠”模式并切断互联网连接以节省电池时,我怀疑这是某种电池优化。
我该如何解决这个问题?我应该使用setRequiredNetworkType(NetworkType.CONNECTED)
,也许?
更新setRequiredNetworkType(NetworkType.CONNECTED)
它只在某些时候有效
。有些运行仍然失败,但有些运行现在成功了。