1/**
2 * @generated by scripts/set-rn-version.js
3 *
4 * Copyright (c) Meta Platforms, Inc. and affiliates.
5 *
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the root directory of this source tree.
8 */
9
10package com.facebook.react.modules.systeminfo;
11
12import com.facebook.react.common.MapBuilder;
13
14import java.util.Map;
15
16public class ReactNativeVersion {
17  public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
18      "major", ${major},
19      "minor", ${minor},
20      "patch", ${patch},
21      "prerelease", ${prerelease});
22}
23