Tag: doze

MQTT Android打盹模式(Android 7.0)

我正在使用Eclipse Paho Mqtt Android库发送一个链接到一个音频文件,该文件将被下载并立即播放。 它工作正常,直到它进入打盹模式。 我已经尝试了白名单和其他几个解决方案,例如: https : //github.com/eclipse/paho.mqtt.android/issues/226 。 这是我的MQTT服务: class MqttManagerService : Service() { var client: MqttAndroidClient? = null var options = MqttConnectOptions() var TAG = "MQTT" var saveMessage = "" var serviceRunningNotification: Notification? = null private var _instance: MqttManagerService? = null var handler = Handler() var runnableCode: Runnable = object : Runnable […]