From 90e26b476268b57ddc4a8129ccf3ff2a111069ba Mon Sep 17 00:00:00 2001 From: Jose Antonio Bravo Date: Tue, 9 Jul 2019 09:45:23 +0200 Subject: [PATCH 1/3] Migrate project from rnpm to eact-native.config.js --- package.json | 5 ----- react-native.config.js | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 react-native.config.js diff --git a/package.json b/package.json index 38eec15a..d514ee90 100644 --- a/package.json +++ b/package.json @@ -42,11 +42,6 @@ "react": ">=15.4.0 || ^16.0.0-alpha", "react-native": ">=0.40" }, - "rnpm": { - "ios": { - "project": "ios/RNGoogleSignin.xcodeproj" - } - }, "license": "MIT", "devDependencies": { "prettier": "1.14.2" diff --git a/react-native.config.js b/react-native.config.js new file mode 100644 index 00000000..1ce87b74 --- /dev/null +++ b/react-native.config.js @@ -0,0 +1,7 @@ +module.exports = { + project: { + ios: { + project: 'ios/RNGoogleSignin.xcodeproj', + }, + }, +}; From a77ae920d30a632572a2ee3f825e4a00bfbf09e5 Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Tue, 27 Aug 2019 13:07:39 +0200 Subject: [PATCH 2/3] Update react-native.config.js --- react-native.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native.config.js b/react-native.config.js index 1ce87b74..f21a4bcc 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -1,5 +1,5 @@ module.exports = { - project: { + dependency: { ios: { project: 'ios/RNGoogleSignin.xcodeproj', }, From d274ea9aa47881c2abaeee001a82118c6d875315 Mon Sep 17 00:00:00 2001 From: Vojtech Novak Date: Tue, 27 Aug 2019 13:54:40 +0200 Subject: [PATCH 3/3] Update react-native.config.js --- react-native.config.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/react-native.config.js b/react-native.config.js index f21a4bcc..126560f4 100644 --- a/react-native.config.js +++ b/react-native.config.js @@ -1,7 +1,9 @@ module.exports = { dependency: { - ios: { - project: 'ios/RNGoogleSignin.xcodeproj', - }, - }, + platforms: { + ios: { + project: 'ios/RNGoogleSignin.xcodeproj' + } + } + } };