@adyen/react-native
Version:
Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native
8 lines (7 loc) • 380 B
JavaScript
;
export function setImport(contents, useFrameworks) {
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;
}
//# sourceMappingURL=setImport.js.map