react-native-check-app-install icon indicating copy to clipboard operation
react-native-check-app-install copied to clipboard

check app not from list

Open DanGDroid opened this issue 7 years ago • 2 comments

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

DanGDroid avatar Jan 23 '18 14:01 DanGDroid

It's updated in Github but not npmjs.com. Check my solution here.

wuodland avatar Aug 18 '19 04:08 wuodland

changed the package json didn npm install still same issue

sarajbosna2012 avatar Jun 13 '20 13:06 sarajbosna2012