You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The option of "extraPaths" in the environment-rules.json is not really optional: copyExtraFolders() { this.rules.extraPaths.forEach((filePath) => { this.copyFiles(filePath); }); }
should be changed to something like: copyExtraFolders() { if (this.rules.extraPaths) { this.rules.extraPaths.forEach((filePath) => { this.copyFiles(filePath); }); } }
Another fail is that is looking for the google-services.*.json on the wrong directory (App_Resources/Android/src/main/res).
You can workaround the two problems with this extraPaths option: "extraPaths": [ "App_Resources/Android" ],
The text was updated successfully, but these errors were encountered:
The option of "extraPaths" in the environment-rules.json is not really optional:
copyExtraFolders() { this.rules.extraPaths.forEach((filePath) => { this.copyFiles(filePath); }); }
should be changed to something like:
copyExtraFolders() { if (this.rules.extraPaths) { this.rules.extraPaths.forEach((filePath) => { this.copyFiles(filePath); }); } }
Another fail is that is looking for the google-services.*.json on the wrong directory (App_Resources/Android/src/main/res).
You can workaround the two problems with this extraPaths option:
"extraPaths": [ "App_Resources/Android" ],
The text was updated successfully, but these errors were encountered: