I'm trying to run my flutter integration tests on firebase test lab. Therefore I'm using dart environment variables to set my login credentials. To setup the ios test version I need to run the following command:
xcodebuild -workspace Runner.xcworkspace -scheme Runner -config Flutter/Release.xcconfig -derivedDataPath ../build/ios_integ -sdk iphoneos build-for-testing
My question is now how to set the dart environment variables in this command? On the android gradle task it works when I pass the variable as base64 string -Pdart-defines="${BASE64_STRING}"
. But that doesn't work for me on iOS.