-
Notifications
You must be signed in to change notification settings - Fork 128
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
unable to check app is installed or not #1
Comments
same here i added the urlScheme for googlemaps to |
@DanGDroid in think you must restart the app in the xcode. |
@DanGDroid did treemore's fix work for you? Can I close this issue? |
@redpandatronicsuk 's solution fixes the issue. @DanGDroid just re-run the app and it'll work! |
i added the urlScheme for Instagram, Facebook and restart the app in the Xcode....But it still return false weather app is installed or not. |
i ended up using |
i use this package my code is
import { AppInstalledChecker, CheckPackageInstallation } from 'react-native-check-app-install';
and inside render() i just put
AppInstalledChecker
.isAppInstalledIOS('facebook') // omit the :// suffix
.then((isInstalled) => {
console.log("isInstalled ", isInstalled);
// isInstalled is true if the app is installed or false if not
})
it always return false weather app is installed or not as you can see in code i am checking for facebook
The text was updated successfully, but these errors were encountered: