From eecc1453ed732c46810385807570d400eae38c43 Mon Sep 17 00:00:00 2001 From: Ali Fuat Arslan Date: Wed, 30 Aug 2017 22:32:11 +0300 Subject: [PATCH] ios_dir directory structure was broken! This hook was copying GoogleServices-Info.plist to broken destination directory. Missing a '/' between IOS_DIR and name. --- copy_google_services_config_files.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/copy_google_services_config_files.js b/copy_google_services_config_files.js index 1c62972..6a0f7ea 100644 --- a/copy_google_services_config_files.js +++ b/copy_google_services_config_files.js @@ -16,8 +16,8 @@ var ANDROID_DIR = 'platforms/android'; var PLATFORM = { IOS: { dest: [ - IOS_DIR + name + '/Resources/GoogleService-Info.plist', - IOS_DIR + name + '/Resources/Resources/GoogleService-Info.plist' + IOS_DIR + '/' + name + '/Resources/GoogleService-Info.plist', + IOS_DIR + '/' + name + '/Resources/Resources/GoogleService-Info.plist' ], src: [ 'GoogleService-Info.plist', @@ -117,4 +117,4 @@ function directoryExists(path) { } catch (e) { return false; } -} \ No newline at end of file +}