app_install_checker 0.0.3 copy "app_install_checker: ^0.0.3" to clipboard
app_install_checker: ^0.0.3 copied to clipboard

Check app is installed or not on Android and iOS devices.

App Install Checker plugin for Flutter #

A Flutter plugin for checking an app is installed or not on the device.

Getting Started #

First, you need to add app_install_checker in your pubspec.yaml file:

import 'package:app_install_checker/app_install_checker.dart';

Only for iOS #

For the app performing the installation check Add the iOS scheme in the Info.plist file:

<dict>
    ...
	<key>LSApplicationQueriesSchemes</key>
	<array>
    	<string>example</string>
	</array>
    ...
</dict>

For the app being checked for installation on the device

You don't need to install this package for the app that is checked for installation on the device; you just need to set up the custom URL scheme in the Info.plist file:

<dict>
	...
    <key>CFBundleURLTypes</key>
    <array>
        <dict>
            <key>CFBundleURLSchemes</key>
            <array>
                <string>example</string>
            </array>
        </dict>
        ...
    </array>
</dict>

Check an app is installed or not #

To check an app is installed or not on the device iosScheme is required for iOS and packageName is required for Android.

iosScheme: The scheme of the app on iOS. packageName: The package name of the app on Android

bool isInstalled = await AppInstallChecker.isAppInstalled(iosScheme: 'example', packageName: 'com.example.app');

7
likes
150
points
943
downloads

Publisher

verified publishernanakomtmt.com

Weekly Downloads

Check app is installed or not on Android and iOS devices.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on app_install_checker