I wanted to make sure that you saw the instructions on the Troubleshooting page for the 60 second error:
Set your Appium Log Level to “Debug” which you can find this option in Windows > Katalon Studio Preferences > Katalon > Mobile to generate debug logs of Appium.
After this change is applied, retry your record/spy session and then open generated .appium file in the project folder.
Somewhere in this file you are likely will see these lines: [debug] [ADB] Running '..\adb.exe' with args: [...] ``[debug] [ADB] Found package: 'com.abc.def.xyz' and fully qualified activity name : 'com.egh.jik' ``[debug] [ADB] Incorrect package and activity. Retrying.
The root cause is Katalon Studio can’t start application due to incorrect package and activity by default, so you need to add additional settings to desired capabilities:
Navigate to Mobile settings (Project > Settings > Execution > Default > Mobile > Android)
Add the following key
Name: appWaitActivity
Value: com.* (based on the prefix of ‘Found package’ log)
Based on your log above, it seems like you might have done the logging part, but I was wondering if you set the appWaitActivity setting (you can try just com.* or the bundle identifier for your app).