/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package com.facebook.react.modules.systeminfo; import android.os.Build; import com.facebook.react.bridge.BaseJavaModule; import com.facebook.react.module.annotations.ReactModule; import java.util.HashMap; import java.util.Map; import javax.annotation.Nullable; /** * Module that exposes Android Constants to JS. */ @ReactModule(name = "AndroidConstants") public class AndroidInfoModule extends BaseJavaModule { @Override public String getName() { return "AndroidConstants"; } @Override public @Nullable Map<String, Object> getConstants() { HashMap<String, Object> constants = new HashMap<>(); constants.put("Version", Build.VERSION.SDK_INT); constants.put("ServerHost", AndroidInfoHelpers.getServerHost()); return constants; } }