shareClick() {
const result=https: //play.google.com/apps/testing/com.birdietest/adityamas234;
const { navigate, state: { params } } = this.props.navigation;
AsyncStorage.getItem('referal', (err, result) => {
Share.share({
message: result,
url: result,
// title: `${params.name}`
}, {
// Android only:
dialogTitle: 'Share BAM goodness',
// iOS only:
excludedActivityTypes: [
'com.apple.UIKit.activity.PostToTwitter'
]
})
this.setState({
ref: result
})
console.log(result);
});
}
我正在通过所有选件API通过共享功能将Play商店链接共享给其他用户。
Here is the Screenshot of exactly How I needed
因此,我如何才能通过单击我的链接来了解安装应用程序的人员,即可以看到使用我的链接安装该应用程序的人员的列表。
提前谢谢