Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@vivintsolar-oss/native-vs-app-link
Advanced tools
yarn add @vivintsolar-oss/native-vs-app-link
// or
// npm install @vivintsolar-oss/native-vs-app-link
A handy little method that will default to the app store if an app that you want to deep link into is not installed on the device.
import VSAppLink from '@vivintsolar-oss/native-vs-app-link';
const config = {
appName: 'Vivint Solar',
appStoreId: 'id1289441541',
playStoreId: 'com.vivintsolar.hea',
appStoreLocale: 'us',
};
VSAppLink.openOnDevice('vslr://+', config)
This is the method you'll want to use most of the time since it will attempt to open up the app on the device and if it doesn't succeed then it will try either openInStore
or openInBrowser
. You can specify it to use openInBrowser
by passing it a downloadLink
in the config object.
import VSAppLink from '@vivintsolar-oss/native-vs-app-link';
const config = {
appStoreId: 'id1289441541',
playStoreId: 'com.vivintsolar.hea',
};
VSAppLink.openInStore(config)
import VSAppLink from '@vivintsolar-oss/native-vs-app-link';
const config = {
downloadLink: 'https://www.vivintsolar.com',
};
VSAppLink.openInBrowser(config)
Name | Default | Type | Description |
---|---|---|---|
url | string | The schema link to the native app you want to deep link into | |
appName | string | Used as the value used in a thrown error | |
appStoreId | string | ID from the Apple App Store | |
playStoreId | string | ID from the Google Play Store | |
appStoreLocale | us | string | Used to specify if the app is only available in the App Store outside of the us . |
appStoreId
can be found in the developer console of itunes but the most common way to find it is via the app store itself via the url. For example for this app, https://itunes.apple.com/us/app/vivint-solar/id1289441541?mt=8
the appStoreId
would be id1289441541
playStoreId
can be found in a similar manner, so for https://play.google.com/store/apps/details?id=com.vivintsolar.hea
the playStoreId
would be com.vivintsolar.hea
FAQs
Deep linking methods for React Native.
We found that @vivintsolar-oss/native-vs-app-link demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.