I cant able to launch app using Espresso Driver

[Espresso] Restoring hidden api policy to the device default configuration

[ADB] Running ‘C:\Users\pkusum\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell settings delete global hidden_api_policy_pre_p_apps’

[ADB] Running ‘C:\Users\pkusum\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell settings delete global hidden_api_policy_p_apps’

[ADB] Running ‘C:\Users\pkusum\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 shell settings delete global hidden_api_policy’

[ADB] Removing forwarded port socket connection: 8300

[ADB] Running ‘C:\Users\pkusum\AppData\Local\Android\Sdk\platform-tools\adb.exe -P 5037 -s emulator-5554 forward --remove tcp:8300’

[BaseDriver] Event ‘newSessionStarted’ logged at 1606065174491 (22:42:54 GMT+0530 (India Standard Time))

[W3C] Encountered internal error running command: UnknownError: An unknown server-side error occurred while processing the command. Original error: Could not proxy command to remote server. Original error: Error: socket hang up

[W3C] at JWProxy.command (C:\Program Files\Appium\resources\app\node_modules\appium\node_modules\appium-base-driver\lib\jsonwp-proxy\proxy.js:261:13)

[HTTP] <-- POST /wd/hub/session 500 237762 ms - 564

[HTTP]

can some one please help on above issue

DesiredCapabilities caps = new DesiredCapabilities();
caps.setCapability(“deviceName”, “My Phone”);
caps.setCapability(“udid”, “emulator-5554”); //Give Device ID of your mobile phone
caps.setCapability(“platformName”, “Android”);
caps.setCapability(“platformVersion”, “10.0”);
caps.setCapability(“locationServicesAuthorized”, true);
caps.setCapability(“autoGrantPermissions”, “true”);
caps.setCapability(“automationName”, “Espresso”);
caps.setCapability(“forceEspressoRebuild”, true);
caps.setCapability(“appPackage”, “com.usablenet.mobile.xxxxxx”);
caps.setCapability(“appActivity”, “com.usablenet.mobile.xxxx.AppStart”);