In my gradle file I defined the following task:
task text_example <<
{
//?!? commandLine ''
println 'Fam Flinstone'
}
I want to put inside this task some commands line. How can I do that ?
I'm using a library to automatically publish in google play. My project is based on Product Flavors and I need to pass in terminal command line by command line for every and each one of my flavors. So I want to pass all commands line in test_example task.