How to share App link using react native Share API?

15,957

Solution 1

The problem is In Android, you cant specify something as url , but the same when you do in IOS, youll get the link (Check the docs to cross verify :rn-share. Its better you can send the link of the app in the message itself so that both platforms can get it without writing double code.

Like this is the example :

import React from 'react';
import { Share, View, Button } from 'react-native';

export default ShareExample = () => {
  const onShare = async () => {
    try {
      const result = await Share.share({
       title: 'App link',
  message: 'Please install this app and stay safe , AppLink :https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&hl=en', 
  url: 'https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&hl=en'
      });
      if (result.action === Share.sharedAction) {
        if (result.activityType) {
          // shared with activity type of result.activityType
        } else {
          // shared
        }
      } else if (result.action === Share.dismissedAction) {
        // dismissed
      }
    } catch (error) {
      alert(error.message);
    }
  };
  return (
    <View style={{ marginTop: 50 }}>
      <Button onPress={onShare} title="Share" />
    </View>
  );
};

Hope it helps. feel free for doubts

Solution 2

I think you can share your app link by placing the url in the message section.

message:'https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&hl=en'

Share:
15,957
Amal p
Author by

Amal p

Updated on June 06, 2022

Comments

  • Amal p
    Amal p almost 2 years

    I am trying to share my app installation link to others from my app settings in react native.

    I used the react native share api for this.

    But using the below code the output only shows the message(code and screenshot below).

    const shareAppOptions = {
      title: 'App link',
      message: 'Please install this app and stay safe', 
      url: 'https://play.google.com/store/apps/details?id=nic.goi.aarogyasetu&hl=en'
    };
    

    enter image description here

    What is the problem ?, I searched everywhere and no one has a proper example.