Created
May 25, 2016 21:55
-
-
Save mreichelt/8427124ac7bad99674f8d52f913dae69 to your computer and use it in GitHub Desktop.
Script to output CSV file of APK size
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OUTFILE=flinc/app/build/outputs/apksize.csv | |
echo filesize > $OUTFILE | |
# yep, that's for Mac. Use "stat -c %s" instead on Linux | |
stat -f%z flinc/app/build/outputs/apk/app-release.apk >> $OUTFILE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment