Commit bbd84bce authored by Jason Simmons's avatar Jason Simmons

Merge pull request #660 from jason-simmons/apk_output_label

Add output to "flutter apk" indicating where the APK file was written
parents da3a0b8e 01ff4ef6
...@@ -211,6 +211,8 @@ class ApkCommand extends FlutterCommand { ...@@ -211,6 +211,8 @@ class ApkCommand extends FlutterCommand {
ensureDirectoryExists(finalApk.path); ensureDirectoryExists(finalApk.path);
builder.align(unalignedApk, finalApk); builder.align(unalignedApk, finalApk);
print('APK generated: ${finalApk.path}');
return 0; return 0;
} finally { } finally {
tempDir.deleteSync(recursive: true); tempDir.deleteSync(recursive: true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment