GeekyAnts/external_app_launcher

app store link not working

shashikiran918 opened this issue · 2 comments

this is my code

void launchApp() async {
var openAppResult = await LaunchApp.openApp(
androidPackageName: 'com.example.zoom_demo',
appStoreLink:
'https://play.google.com/store/apps/details?id=com.aceenggacademy.mobile',
);
}
when external app is not available in device it should redirect to store right ! but in my code it is redirecting to playstore and still loading like circular progress indicator not showing app store link play store page .

This is my androidmanifestxml file

Screenshot from 2022-08-10 16-21-25

can u please help me to find this app store link problem?

Hi @shashikiran918
You are specifying google play store link instead of passing App Store link.
In order to open your app on App Store,You should declare variables as below

appStoreLink:'itms-apps://itunes.apple.com/us/app/ace-engineering-academy/id1039063761',

thank you got it