@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
12 lines (10 loc) • 374 B
text/typescript
export function setImport(contents: string, useFrameworks: boolean): string {
const importLine = useFrameworks
? '#import <adyen_react_native/ADYRedirectComponent.h>'
: '#import <adyen-react-native/ADYRedirectComponent.h>';
contents = contents.replace(
'#import "AppDelegate.h"\n',
`#import "AppDelegate.h"\n\n${importLine}\n`
);
return contents;
}