···11-import {isNative} from 'platform/detection'
11+import {isIOS, isAndroid} from 'platform/detection'
22// import * as Sharing from 'expo-sharing'
33import Clipboard from '@react-native-clipboard/clipboard'
44import * as Toast from '../view/com/util/Toast'
···1111 * clipboard.
1212 */
1313export async function shareUrl(url: string) {
1414- if (isNative) {
1515- Share.share({url: url})
1414+ if (isAndroid) {
1515+ Share.share({message: url})
1616+ } else if (isIOS) {
1717+ Share.share({url})
1618 } else {
1719 // React Native Share is not supported by web. Web Share API
1820 // has increasing but not full support, so default to clipboard