We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5630cde commit ff12734Copy full SHA for ff12734
lib/services/android-project-service.ts
@@ -148,12 +148,12 @@ class AndroidProjectService implements IPlatformProjectService {
148
return (() => {
149
var buildConfiguration = options.release ? "release" : "debug";
150
var args = this.getAntArgs(buildConfiguration, projectRoot);
151
- var args2 = this.getAntArgs(buildConfiguration, projectRoot);
+ var argsSaved = this.getAntArgs(buildConfiguration, projectRoot);
152
this.spawn('ant', args).wait();
153
this.generateMetadata(projectRoot);
154
this.updateMetadata(projectRoot);
155
// build the project again in order to include the newly generated metadata
156
- this.spawn('ant', args2).wait();
+ this.spawn('ant', argsSaved).wait();
157
}).future<void>()();
158
}
159
0 commit comments