Skip to content

A couple of problems with the plugin #4

Open
@pablomargareto

Description

@pablomargareto

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions