I have a React Native Expo application which checks third party application installation, if the application is installed it move ahead but if not it redirects user to playstore to download the application. However after the download the user has to move back to the application themselves. I want a solution where once application is installed the user should automatically move back to the main application.
I have added package and app state to check the application installed or not.
Linking.openURL('playstoreURL');
Used the above code to open playstore for the specific package installation.
2