expo-share-intent
Version:
use native share intent for ios and android with expo
19 lines (18 loc) • 624 B
TypeScript
export type CustomParameter = {
[key: string]: string;
};
export type Parameters = {
iosActivationRules?: {
[key: string]: number | boolean | string;
} | string;
iosShareExtensionName?: string;
iosAppGroupIdentifier?: string;
iosShareExtensionBundleIdentifier?: string;
androidMainActivityAttributes?: CustomParameter;
androidIntentFilters?: ("text/*" | "image/*" | "video/*" | "*/*")[];
androidMultiIntentFilters?: ("image/*" | "video/*" | "*/*")[];
disableExperimental?: boolean;
preprocessorInjectJS?: string;
disableAndroid?: boolean;
disableIOS?: boolean;
};