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
Pass buildConfig when getting path to last build output
Pass the whole buildConfig object when getting the path to the last build output. This required changes in debug services and TestExecutionService.
Also change the args of cleanProject method - the `options` passed to `gradle` are now determined in the method itself instead of passing them from the caller.
This way we'll not require "android-23" (the default one set in build.gradle) when we miss to pass the required options.
this.$logger.info("No .ipa, mobile provision or certificate set. Perfect! Now we'll build .xcarchive and let Xcode pick the distribution certificate and provisioning profile for you when exporting .ipa for AppStore submission.");
* Copies latest build output to a specified location.
161
161
* @param {string} platform Mobile platform - Android, iOS.
162
162
* @param {string} targetPath Destination where the build artifact should be copied.
163
-
* @param {{isForDevice: boolean, isReleaseBuild: boolean}} settings Defines if the searched artifact should be for simulator and is it built for release.
163
+
* @param {IBuildConfig} buildConfig Defines if the searched artifact should be for simulator and is it built for release.
164
164
* @param {IProjectData} projectData DTO with information about the project.
0 commit comments