Socket
Socket
Sign inDemoInstall

@vivintsolar-oss/native-vs-app-link

Package Overview
Dependencies
19
Maintainers
8
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @vivintsolar-oss/native-vs-app-link

Deep linking methods for React Native.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
8
Created
Weekly downloads
 

Readme

Source
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.

Demo

openOnDevice

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.

openInStore

import VSAppLink from '@vivintsolar-oss/native-vs-app-link';

const config = {
  appStoreId: 'id1289441541',
  playStoreId: 'com.vivintsolar.hea',
};

VSAppLink.openInStore(config)

openInBrowser

import VSAppLink from '@vivintsolar-oss/native-vs-app-link';

const config = {
  downloadLink: 'https://www.vivintsolar.com',
};

VSAppLink.openInBrowser(config)

Props

NameDefaultTypeDescription
urlstringThe schema link to the native app you want to deep link into
appNamestringUsed as the value used in a thrown error
appStoreIdstringID from the Apple App Store
playStoreIdstringID from the Google Play Store
appStoreLocaleusstringUsed to specify if the app is only available in the App Store outside of the us.

Store ID's

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

Keywords

FAQs

Last updated on 27 Mar 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc