react-native-zalo-auth
Version:
Zalo SDK for React Native
18 lines • 467 B
JavaScript
import { withPlugins } from '@expo/config-plugins';
import withAndroid from './android/withAndroid';
import withIOS from './ios/withIOS';
const withZaloKit = (config, {
appId,
appDelegateContent,
mainActivityContent,
mainApplicationContent
}) => withPlugins(config, [[withAndroid, {
appId,
mainActivityContent,
mainApplicationContent
}], [withIOS, {
appId,
appDelegateContent
}]]);
export default withZaloKit;
//# sourceMappingURL=withZaloKit.js.map