Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isAppInstalled() doesn't detect that Zoom is already installed. #34

Open
YesThatGy opened this issue Mar 8, 2024 · 0 comments
Open

Comments

@YesThatGy
Copy link

Description: I'm trying to use LaunchApp.isAppInstalled() to see if Zoom is already installed, and prompt the user to install it if not already. However, regardless of whether Zoom is installed, isAppInstalled() is always returning false.

// Example Code, copy/paste from my app code:
bool isInstalled = await LaunchApp.isAppInstalled(
androidPackageName: 'us.zoom.videomeetings',
iosUrlScheme: 'zoomus://',
);
if (isInstalled == false) {
return showError("Install Zoom to attend this meeting.");
}
// Launch zoom meeting

Expected behavior: When Zoom is already installed, this code should not interrupt the flow of the program.

Actual behavior: Even though Zoom is already installed, the end user sees an error "Install Zoom to attend this meeting."

Environment: The system I'm testing with (my phone) is a 2023 Moto Razr plus with all updates applied. I've tried compiling on OSX Sonoma (with all updates applied) and Fedora Core 39 (Also, with all updates applied)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant