ecc521 / capacitor-installer-info

Capacitor plugin to obtain information about the installation source of the application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

capacitor-installer-info

Capacitor plugin to obtain information about the installation source of the application

This plugin ONLY supports Android (methods exist but reject on other platforms when called)! This is because there is not an installer for websites, and the installer for iOS/iPadOS apps is always the App Store.

Note that, if shipping iOS apps for installation on MacOS becomes common, it might be relevant to detect the installation source for iOS apps on MacOS, and jailbroken devices do exist.

Install

npm install capacitor-installer-info
npx cap sync

API

getInstallSourceInfo(...)

getInstallSourceInfo(details: Record<string, string> | undefined) => Promise<Record<string, string>>

Obtain the installation source information for the given package name using PackageManager.getInstallSourceInfo Rejects on non-Android platforms. Returned values may vary by Android API level. Output example: { installingPackageName: "com.android.vending", originatingPackageName: "", initiatingPackageName: "com.android.vending" }

When "" (empty string) is returned, the value was null from the PackageManager API. When no value is returned for a key, the value could not be calculated given the Android API level or for other reasons.

Param Type Description
details Record<string, string> : string} | undefined. If packageName undefined or no object passed, the package name of the current app is used.

Returns: Promise<Record<string, string>>

Since: 6.0.0


Type Aliases

Record

Construct a type with a set of properties K of type T

{ [P in K]: T; }

About

Capacitor plugin to obtain information about the installation source of the application


Languages

Language:Java 42.1%Language:TypeScript 20.7%Language:Ruby 12.0%Language:Swift 10.6%Language:Objective-C 8.5%Language:JavaScript 6.0%