We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
if i want to check if app installed not from APP_LIST
as said in tutorial not working as it searches them in APP_LIST:
static isAppInstalledAndroid(key) { return this.checkPackageName(APP_LIST[key].pkgName); } static isAppInstalledIOS(key) { return this.checkURLScheme(APP_LIST[key].urlScheme, APP_LIST[key].urlParams); }
you need to call directly to:
checkPackageName(packagename)
or
checkURLScheme(urlScheme, urlParams)
or need to fix isAppInstalled(key) to check apps not from of APP_LIST
isAppInstalled(key)
APP_LIST
The text was updated successfully, but these errors were encountered:
It's updated in Github but not npmjs.com. Check my solution here.
Sorry, something went wrong.
changed the package json didn npm install still same issue
No branches or pull requests
if i want to check if app installed not from APP_LIST
as said in tutorial not working as it searches them in APP_LIST:
you need to call directly to:
or
or need to fix
isAppInstalled(key)
to check apps not from ofAPP_LIST
The text was updated successfully, but these errors were encountered: