resolveApk static method
Resolve the APK file to upload. Priority: --file arg > config apkPath.
Implementation
static File resolveApk(
String projectRoot,
String configApkPath,
String? fileArg,
) {
final path = fileArg ?? p.join(projectRoot, configApkPath);
return File(path);
}