I am using Bitrise to generate iOS build of my flutter project. I have follow this steps to configure workflow. It shows me error like this. Can you please guide what's wrong here and how to fix this error.
Asked
Active
Viewed 412 times
0

Khyati Modi
- 630
- 1
- 9
- 19
2 Answers
1
In the xcode-archive step, these values are pre-configured as environment variables. You need to add these variables either in Bitrise UI or bitrise.yml file:
app:
envs:
- opts:
is_expand: false
BITRISE_FLUTTER_PROJECT_LOCATION: "."
- opts:
is_expand: false
BITRISE_IOS_LOCATION: ios/Runner.xcworkspace
- opts:
is_expand: false
BITRISE_SCHEME: Runner

Michiel
- 468
- 3
- 23
-
Thank you for your kind help. Here is another way to solve above issue. – Khyati Modi May 18 '22 at 12:31
0
For above error we can edit input variables in "Xcode Archive & Export for iOS" step and give proper path of your xcworkspace and name of your schema.

Khyati Modi
- 630
- 1
- 9
- 19