作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试将一些图像上传到 AWS 的 s3 存储桶中。在 API 级别 26 以下工作正常但显示错误无法执行 HTTP 请求:超时来自 API 级别 26 及更高级别。
使用的 SDK:
implementation 'com.amazonaws:aws-android-sdk-s3:2.13.+'
implementation ('com.amazonaws:aws-android-sdk-mobile-client:2.13.+@aar') { transitive = true }
implementation ('com.amazonaws:aws-android-sdk-auth-userpools:2.13.+@aar') { transitive = true }
我已经从应用程序开始服务,例如:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val channel = NotificationChannel(AWS_NOTIFICATION_CHANNEL_ID, AWS_NOTIFICATION_CHANNEL_ID,
NotificationManager.IMPORTANCE_HIGH)
(getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager).createNotificationChannel(channel)
val notification = Notification.Builder(applicationContext, AWS_NOTIFICATION_CHANNEL_ID)
.setContentTitle(AWS_NOTIFICATION_TITLE)
.setContentText(AWS_NOTIFICATION_CONTENT)
.setSmallIcon(R.mipmap.sym_def_app_icon)
.build()
val tsIntent = Intent(applicationContext, TransferService::class.java)
tsIntent.putExtra(TransferService.INTENT_KEY_NOTIFICATION, notification)
tsIntent.putExtra(TransferService.INTENT_KEY_NOTIFICATION_ID, AWS_NOTIFICATION_ID)
tsIntent.putExtra(TransferService.INTENT_KEY_REMOVE_NOTIFICATION, true)
applicationContext.startForegroundService(tsIntent)
} else {
applicationContext.startService(Intent(applicationContext, TransferService::class.java))
}
欣赏使用或不使用 TransferService 的两种解决方案。
最佳答案
要在Oreo及以上支持TransferService需要启动ForegroundService
TransferNetworkLossHandler,在 2.11.0 中引入了一个监听网络连接变化的广播接收器。 TransferNetworkLossHandler 在网络离线时暂停正在进行的传输,并在网络恢复在线时恢复暂停的传输。 TransferService 在创建服务时注册 TransferNetworkLossHandler 并在服务销毁时注销处理程序。
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val channel = NotificationChannel(AWS_NOTIFICATION_CHANNEL_ID,
AWS_NOTIFICATION_CHANNEL_ID,
NotificationManager.IMPORTANCE_LOW)
(getSystemService(Context.NOTIFICATION_SERVICE) as
NotificationManager).createNotificationChannel(channel)
val notification = Notification.Builder(applicationContext,
AWS_NOTIFICATION_CHANNEL_ID)
.setContentTitle(AWS_NOTIFICATION_TITLE)
.setContentText(AWS_NOTIFICATION_CONTENT)
.setSmallIcon(R.mipmap.sym_def_app_icon)
.setAutoCancel(true)
val tsIntent = Intent(applicationContext, TransferService::class.java)
tsIntent.putExtra(TransferService.INTENT_KEY_NOTIFICATION, notification.build())
tsIntent.putExtra(TransferService.INTENT_KEY_NOTIFICATION_ID,AWS_NOTIFICATION_ID)
tsIntent.putExtra(TransferService.INTENT_KEY_REMOVE_NOTIFICATION, true)
applicationContext.startForegroundService(tsIntent)
} else {
applicationContext.startService(Intent(applicationContext,
TransferService::class.java))
}
有关详细信息,请参阅:aws-storage
关于Android AWS TransferService 不适用于 API 级别 26 及更高级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56268970/
我是一名优秀的程序员,十分优秀!