From 9eecdf9c814cad4e3588ed23276da1b76b4be438 Mon Sep 17 00:00:00 2001 From: Erik Djupvik Date: Fri, 9 Jun 2017 14:22:23 +0200 Subject: [PATCH] Copy GoogleService-Info.plist content to all locations required --- scripts/after_prepare.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/after_prepare.js b/scripts/after_prepare.js index ed0250bda..8e77bfadb 100755 --- a/scripts/after_prepare.js +++ b/scripts/after_prepare.js @@ -41,6 +41,7 @@ if (directoryExists("platforms/ios")) { try { var contents = fs.readFileSync(paths[i]).toString(); fs.writeFileSync("platforms/ios/" + name + "/Resources/GoogleService-Info.plist", contents) + fs.writeFileSync("platforms/ios/" + name + "/Resources/Resources/GoogleService-Info.plist", contents) } catch(err) { process.stdout.write(err); }