Getting error while running Android appium code for me

Hello Guys, While running android Appium code for a hybrid app, am getting this error as soon as the code shifts from native type to web view mode, Can some one please help me
org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the command. Original error: Error attempting to start URI. Original error: Error: Starting: Intent { act=android.intent.action.VIEW dat=https://www.google.com/… pkg=com.androidsample.generalstore }
Error: Activity not started, unable to resolve Intent { act=android.intent.action.VIEW dat=https://www.google.com/… flg=0x10000000 pkg=com.androidsample.generalstore }
Build info: version: ‘4.10.0’, revision: ‘c14d967899’
System info: os.name: ‘Windows 11’, os.arch: ‘amd64’, os.version: ‘10.0’, java.version: ‘21.0.1’
Driver info: io.appium.java_client.android.AndroidDriver
Command: [11006b05-c4c3-4a16-b1f9-76aa14f455ec, get {url=https://www.google.com}]
Capabilities {appium:app: C:\Users\user\eclipse-works…, appium:appPackage: com.androidsample.generalstore, appium:automationName: UIAutomator2, appium:chromedriverExecutable: C:\Appium Automation testin…, appium:databaseEnabled: false, appium:desired: {app: C:\Users\user\eclipse-works…, automationName: UIAutomator2, chromedriverExecutable: C:\Appium Automation testin…, deviceName: Vivo 1902, platformName: ANDROID}, appium:deviceApiLevel: 28, appium:deviceManufacturer: vivo, appium:deviceModel: vivo 1902, appium:deviceName: EQV88HNJSKAUSW4L, appium:deviceScreenDensity: 320, appium:deviceScreenSize: 720x1544, appium:deviceUDID: EQV88HNJSKAUSW4L, appium:javascriptEnabled: true, appium:locationContextEnabled: false, appium:networkConnectionEnabled: true, appium:pixelRatio: 2, appium:platformVersion: 9, appium:statBarHeight: 56, appium:takesScreenshot: true, appium:viewportRect: {height: 1351, left: 0, top: 56, width: 720}, appium:warnings: {}, appium:webStorageEnabled: false, platformName: ANDROID}
Session ID: 11006b05-c4c3-4a16-b1f9-76aa14f455ec

–> BaseTest class
public class BaseTest {
public AndroidDriver driver;

@BeforeClass
public void configuredAppium() throws MalformedURLException {

	UiAutomator2Options options = new UiAutomator2Options();
	options.setDeviceName("Vivo 1902");

	options.setChromedriverExecutable(
			"C:\\Appium Automation testing tools and softwares\\Chrome driver\\chrome-win64\\chrome-win64");
	// options.setApp("C:\\Users\\user\\eclipse-workspace\\project\\src\\test\\java\\resources\\ApiDemos-debug.apk");
	options.setApp("C:\\Users\\user\\eclipse-workspace\\project\\src\\test\\java\\resources\\General-Store.apk");

	driver = new AndroidDriver(new URL("http://127.0.0.1:4890/wd/hub"), options);
	driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(5));
	//driver.get("https://www.google.com");

}

–> TestCase script
Set contexts = driver.getContextHandles();
for (String contextName : contexts) {
System.out.println(contextName);
}
// This is above code gives 2 methods, one native app and other for mobile webs
// view contexts
//driver.get(“https://www.google.com”);
driver.context(“WEBVIEW_com.androidsample.generalstore”);
Thread.sleep(5000);
driver.findElement(By.name(“q”)).sendKeys(“TestUserDetails”);
Thread.sleep(5000);
driver.findElement(By.name(“q”)).sendKeys(Keys.ENTER);

	driver.navigate().back();
	driver.context("NATIVE_APP");