/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h
28 строк
620 B
Marc Rousavy
feat: Add `REACT_NATIVE_VERSION_*` definitions to `ReactNativeVersion.h` (#48813)
21 янв 2025, 20:00
21 янв 2025, 20:00
f2553d3
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @generated by scripts/releases/set-version.js */ #pragma once #include <cstdint> #include <string_view> #define REACT_NATIVE_VERSION_MAJOR 1000 #define REACT_NATIVE_VERSION_MINOR 0 #define REACT_NATIVE_VERSION_PATCH 0 namespace facebook::react { constexpr struct { int32_t Major = 1000; int32_t Minor = 0; int32_t Patch = 0; std::string_view Prerelease = ""; } ReactNativeVersion; } // namespace facebook::react