ohh2ahh / AppAvailability

This Cordova / PhoneGap plugin allows you to check if an app is installed.
228 stars 117 forks source link

callback always "success" even uninstalling twiter app #74

Open rashearth opened 1 year ago

rashearth commented 1 year ago

Hi, Thanks for the wonderful system!

I just have one issue... I have suceeded on using your system as below, for checking the twitter app.

However, even i uninstalled the twitter app in my iphone, it also returns success. Please let me know how i can solve this isssue

◆iphone 14 pro ◆ios 16.3 ◆Using AppAvailability cordova app 0.4.2 ◆ Code: ``` appAvailability.check( 'twitter://', // URI Scheme function() { // Success callback console.log('Twitter is available'); }, function() { // Error callback console.log('Twitter is not available'); } ); ```
champikamendis commented 11 months ago

Hi, I also faced the same issue. I had to create my own plugin for achieving this scenario. Here is the URL for my ios plugin: https://github.com/champikamendis/cordova-plugin-check-installed-apps Hope this may help. Thanks