flutter_install_app_plugin

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter install app plugin

flutter_install_app_plugin #
A Flutter plug-in helps to install iOS and Android apps.
Usage #
It is not uncommon that you may want to ask a user to install another app within your app. What you need to do here is to prepare a set of iOS app ID on App Store, and Android package name.
For example, if you want to lead your customers to install KKBOX, you need to create an app set like:
var app = AppSet()
..iosAppId = 300915900
..androidPackageName = 'com.skysoft.kkbox.android';
copied to clipboard
Then call the plug-in.
FlutterInstallAppPlugin.installApp(app);
copied to clipboard
On iOS, the plug-in calls SKStoreProductViewController, while it creates an activity to open a URL with "market://" prefix on Android.
Additional Parameters for iOS #
On iOS, you can use additional parameters including:

iosIapId: Represents the product identifier for the promoted product you want the store to display at the top of the page. See SKStoreProductParameterProductIdentifier.
iosAffiliateToken: Your affiliate identifier. You receive an affiliate identifier when you sign up for Apple's Affiliate Program. See SKStoreProductParameterAffiliateToken.
iosCampaignToken: Represents an App Analytics campaign. This token allows you to track the effectiveness of your Affiliate Program link and your App Analytics campaign. See SKStoreProductParameterCampaignToken.
iosAdvertisingPartnerToken: Represents the advertising partner you wish to use. See SKStoreProductParameterAdvertisingPartnerToken
iosProviderToken: Represents the provider token for the developer that created the app. See SKStoreProductParameterProviderToken.

That's all. Enjoy!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.