UNPKG

expo-plugin-ios-static-libraries

Version:

Expo Config Plugin to set specific iOS libraries to use static build type

15 lines (14 loc) 537 B
import { ConfigPlugin } from '@expo/config-plugins'; /** * Patches a Podfile string to add static library configuration for specified libraries * This function is exported for testing purposes */ export declare function patchPodfile(podfileContent: string, libraries?: string[]): string; /** * Config plugin that adds pre_install hook to the iOS Podfile to set * specific libraries to use static build type */ declare const withIosStaticLibraries: ConfigPlugin<{ libraries: string[]; }>; export default withIosStaticLibraries;