Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A couple of problems with the plugin #4

Open
pablomargareto opened this issue Mar 9, 2021 · 0 comments
Open

A couple of problems with the plugin #4

pablomargareto opened this issue Mar 9, 2021 · 0 comments

Comments

@pablomargareto
Copy link

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" ],

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant