mirror of
https://github.com/status-im/react-native-config.git
synced 2026-08-31 14:41:07 +00:00
This fixes RNW@0.61 support and adds support for autolinking on RNW@0.63 and beyond.
16 lines
343 B
C++
16 lines
343 B
C++
#include "pch.h"
|
|
#include "ReactPackageProvider.h"
|
|
#include "ReactPackageProvider.g.cpp"
|
|
|
|
#include <ModuleRegistration.h>
|
|
|
|
#include "RNCConfig.h"
|
|
|
|
namespace winrt::RNCConfig::implementation
|
|
{
|
|
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const& packageBuilder) noexcept
|
|
{
|
|
AddAttributedModules(packageBuilder);
|
|
}
|
|
}
|