Files
flipper/react-native/react-native-flipper/windows/ReactNativeFlipper/FlipperReactDeviceInfo.h
Lorenzo Blasa 322a1ba6b1 Initialise Flipper on module initialisation
Summary:
^

This diff brings most things together and can be considered the test platform for RNW.

With this, Flipper client gets initialised and started.

This means the application connects and is ready for debugging.

Reviewed By: antonk52

Differential Revision: D39054912

fbshipit-source-id: 94397f6a72b1e9d9c0f2f3efaf9967be525076cd
2022-09-04 12:19:26 -07:00

28 lines
555 B
C++

/*
* 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.
*/
#pragma once
#include <string>
namespace facebook {
namespace flipper {
class FlipperReactDeviceInfo {
public:
std::string getOS();
std::string getDevice();
std::string getDeviceId();
std::string getHost();
std::string getAppName();
std::string getAppId();
std::string getAppStorageDirectory();
};
} // namespace flipper
} // namespace facebook