dpa99c / react-native-launch-navigator

A React Native module for launching today's most popular navigation/ride apps to navigate to a destination.
143 stars 34 forks source link

Waize app not available even i have downloaded the app #44

Closed Sahilstellen closed 7 months ago

Sahilstellen commented 7 months ago

const getAllApps = () => { let app = null; LaunchNavigator.isAppAvailable(LaunchNavigator.APP.WAZE).then( isWazeAvailable => { if (isWazeAvailable) { app = LaunchNavigator.APP.WAZE; } else { console.warn( 'Waze not available - falling back to default navigation app', ); }

    LaunchNavigator.navigate('London, UK', {
      app: app,
    })
      .then(() => console.log('Launched navigator'))
      .catch(err => console.error('Error launching navigator: ' + err));
  },
);

};

i have added this code and also installed the Waize app and also google maps in my iphone but when i tried to open the app its saying app is not available and also when i checked which apps in available then also its saying waize and google maps is unavaialbe even its saying about all the other apps as well onlu shpwing apple maps is available what do i need to do ?

xcode version - 15.1 react native version - 0.73.1