Lets say I have a compiled Java program called launchProgramm.class. It takes 2 parameters of String.
And I have a gradle build script
android {
...
}
What I need is to launch my launchProgramm from gradle script and give it 2 parameters. How can I do that?
Listen, I need to do some things with .apk file after all gradle build is finished. Lets say I want to copy it to another directory or open it and change some files. Is ip possible?