I am unable to get Appium to start an Android session and did not find anything related to the error message I am getting when I searched online.
When I run my test Appi
Replace ApplicationName> Absolute to either App or (appPackage and appActivity)
//Either add following line in the DesiredCapabilities
capabilities.setCapability(MobileCapabilityType.App, "Path to your apk file");
//OR add following two capabilities if the app is already installed in the testing device
capabilities.setCapability("appPackage", "app package name");
capabilities.setCapability("appActivity, "app activity name");