JavaScript integration
import {
NativeModules,
NativeEventEmitter,
} from 'react-native';
const {Appfigurate} = NativeModules;
const AppfigurateEvents = new NativeEventEmitter(NativeModules.Appfigurate);let serverURL = await Appfigurate.nativeValue('serverURL') // dev.appfigurate.com
let debugLogging = await Appfigurate.nativeValue('debugLogging')); // falseAppfigurateEvents.addListener('APLConfigurationUpdated', result => {
// do something
});Last updated