9 lines
286 B
JavaScript
9 lines
286 B
JavaScript
'use strict';
|
|
|
|
// Bridge to:
|
|
// Android: buildConfigField vars set in build.gradle, and exported via ReactConfig
|
|
// iOS: config vars set in xcconfig and exposed via ReactNativeConfig.m
|
|
import { NativeModules } from 'react-native';
|
|
|
|
export default NativeModules.ReactNativeConfig || {};
|