diff --git a/plugins/appcd-plugin-android/src/android-info-service.js b/plugins/appcd-plugin-android/src/android-info-service.js
index a271c38..c5ef498 100644
--- a/plugins/appcd-plugin-android/src/android-info-service.js
+++ b/plugins/appcd-plugin-android/src/android-info-service.js
@@ -62,6 +62,9 @@ export default class AndroidInfoService extends DataServiceDispatcher {
.on('close', () => {
console.log('ADB connection was closed');
gawk.set(this.data.devices, []);
+ setTimeout(async () => {
+ await this.initDevices();
+ }, 1000);
})
.once('error', err => {
console.log('Track devices returned error: %s', err.message);