I want to open several other applications from my React Native app.
Linking (https://facebook.github.io/react-native/docs/linking.html) works great for apps like facebook, google maps, tel, skype when I know their intent urls, but what I want to run is default ebook reader, youtube, IPLA and a bunch of games preinstalled on tablet, which urls / package names I don't know.
My team ex-member year ago creates other app with cordova and he uses this tool: https://github.com/lampaa/com.lampa.startapp.
Questions:
- whether there is some tool like lampaa startapp above, but for React Native, where I can run app with a package name, not url?
- how can I check the intent url (like 'fb:' for facebook, 'geo:' for g.maps) and package names (like 'com.google.android.apps.maps') of installed apps?
- how to run installed games and ebook reader, when I already have their package name but not url?
Android only, don't care about iOS.