Cannnot start the 'com.samsung.android.app.notes'

I have used below code to Install and open Samsung notes app …

from appium import webdriver

cap={
“platformName”: “Android”,
“platformVersion”: “11”,
“app”: “C:\Users\rohit.d2.CORP\Desktop\New folder (2)\\Samsung Notes_4.2.04.27.apk”,
“appActivity”: “”,
“appPackage”: “”,
“deviceName”: “R3CN904AMHF”
}

driver = webdriver.Remote(“http://localhost:4723/wd/hub”,cap)

and I’m getting below error:
raceback (most recent call last):
File “C:\Users\rohit.d2.CORP\AppData\Local\Programs\Python\Python39\exe.py”, line 12, in
driver = webdriver.Remote(“http://localhost:4723/wd/hub”,cap)
File “C:\Users\rohit.d2.CORP\AppData\Local\Programs\Python\Python39\lib\site-packages\appium\webdriver\webdriver.py”, line 155, in init
super().init(
File “C:\Users\rohit.d2.CORP\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py”, line 157, in init
self.start_session(capabilities, browser_profile)
File “C:\Users\rohit.d2.CORP\AppData\Local\Programs\Python\Python39\lib\site-packages\appium\webdriver\webdriver.py”, line 225, in start_session
response = self.execute(RemoteCommand.NEW_SESSION, parameters)
File “C:\Users\rohit.d2.CORP\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\webdriver.py”, line 321, in execute
self.error_handler.check_response(response)
File “C:\Users\rohit.d2.CORP\AppData\Local\Programs\Python\Python39\lib\site-packages\selenium\webdriver\remote\errorhandler.py”, line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Cannot start the ‘com.samsung.android.app.notes’ application. Visit https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/android/activity-startup.md for troubleshooting. Original error: ‘com.samsung.android.app.notes.memolist.MemoListActivity’ or ‘com.samsung.android.app.notes.com.samsung.android.app.notes.memolist.MemoListActivity’ never started. Visit https://github.com/appium/appium/blob/master/docs/en/writing-running-appium/android/activity-startup.md for troubleshooting

Kindly help me to resolve the issue