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
I am working on Flutter app and need to run the tests on AWS using sylph from local machine. But to build the app I need to pass additional args so that runnable build(apk) is created and uploaded to AWS Device Farm.
Is there any way to provide additional argument through Sylph.yaml or can we update the following command locally in sylph_run.dart> Line 99: command = ['flutter', 'build', 'apk', '-t', mainPath, '--debug'];?
Tired to update the command locally with additional arguments but while running 'sylph -c sylph -v' it is executing with command = ['flutter', 'build', 'apk', '-t', mainPath, '--debug'] instead of command = ['flutter', 'build', 'apk', '-t', mainPath, additionalArg ,'--debug']
The text was updated successfully, but these errors were encountered:
shindesuraj1409
changed the title
Need to Provide addi
Need to Provide additional arguments while building Flutter application using sylph
Mar 26, 2021
I am working on Flutter app and need to run the tests on AWS using sylph from local machine. But to build the app I need to pass additional args so that runnable build(apk) is created and uploaded to AWS Device Farm.
Is there any way to provide additional argument through Sylph.yaml or can we update the following command locally in sylph_run.dart> Line 99:
command = ['flutter', 'build', 'apk', '-t', mainPath, '--debug'];
?Tired to update the command locally with additional arguments but while running 'sylph -c sylph -v' it is executing with command = ['flutter', 'build', 'apk', '-t', mainPath, '--debug'] instead of command = ['flutter', 'build', 'apk', '-t', mainPath, additionalArg ,'--debug']
The text was updated successfully, but these errors were encountered: