From 86eb9c8613cbc346ff981cbc5002efe07971e7e5 Mon Sep 17 00:00:00 2001 From: Nouman Sakhawat <48842733+NoumanSakhawat@users.noreply.github.com> Date: Fri, 27 Dec 2019 15:44:27 +0500 Subject: [PATCH] Create react-native.config.js The following packages use deprecated "rnpm" config that will stop working from next release: --- react-native.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 react-native.config.js diff --git a/react-native.config.js b/react-native.config.js new file mode 100644 index 00000000..bfafe84d --- /dev/null +++ b/react-native.config.js @@ -0,0 +1,10 @@ +module.exports = { + rnpm: { + "android": { + "packageInstance": "new OrientationPackage()" + }, + "ios": { + "project": "iOS/RCTOrientation.xcodeproj" + } + } + };