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 version.json file should be created in the project root directory, but it is currently being created in the app folder.
Previously, the new SemanticVersionFile(versionFilePath); statement was executed in the BuildAndVersioning.init() function. However, in the current version, the new SemanticVersionFile(versionFilePath); statement is executed in the BuildAndVersioning constructor. This means that the file is created immediately in the BuildAndVersioning buildAndVersioning = project.getTasks().create("BuildAndVersioning",BuildAndVersioning.class); statement. The path at this point is the path of the build.gradle file. To fix this, we need to change the code so that the new SemanticVersionFile(versionFilePath); statement is executed in the buildAndVersioning.doExcute() method, as it was in the previous version.
The text was updated successfully, but these errors were encountered:
The version.json file should be created in the project root directory, but it is currently being created in the app folder.
Previously, the new SemanticVersionFile(versionFilePath); statement was executed in the BuildAndVersioning.init() function. However, in the current version, the new SemanticVersionFile(versionFilePath); statement is executed in the BuildAndVersioning constructor. This means that the file is created immediately in the BuildAndVersioning buildAndVersioning = project.getTasks().create("BuildAndVersioning",BuildAndVersioning.class); statement. The path at this point is the path of the build.gradle file. To fix this, we need to change the code so that the new SemanticVersionFile(versionFilePath); statement is executed in the buildAndVersioning.doExcute() method, as it was in the previous version.
The text was updated successfully, but these errors were encountered: