Example usage for com.facebook.react.modules.network NetworkingModule NetworkingModule

List of usage examples for com.facebook.react.modules.network NetworkingModule NetworkingModule

Introduction

In this page you can find the example usage for com.facebook.react.modules.network NetworkingModule NetworkingModule.

Prototype

public NetworkingModule(final ReactApplicationContext context) 

Source Link

Usage

From source file:com.doozy.shell.DoozyReactPackage.java

License:Open Source License

@Override
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
    return Arrays.<NativeModule>asList(new AsyncStorageModule(reactContext), new FrescoModule(reactContext),
            new NetworkingModule(reactContext), new ToastModule(reactContext),
            new NotificationModule(reactContext), new AlarmModule(reactContext));
}