summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Yi <byi@google.com>2018-02-13 09:36:25 +0000
committerandroid-build-merger <android-build-merger@google.com>2018-02-13 09:36:25 +0000
commitd79c788169a8054ab742cb038173888a24dedb04 (patch)
tree3281d001217a6c4d8d39852e6aedbcf79c438fe7
parent0010553abe6b857b3411012cc8e2b09fad9b4380 (diff)
parenta62f435feab2011fe3c842bd6003ad727b45f836 (diff)
downloaddevice_common-d79c788169a8054ab742cb038173888a24dedb04.tar.gz
device_common-d79c788169a8054ab742cb038173888a24dedb04.tar.bz2
device_common-d79c788169a8054ab742cb038173888a24dedb04.zip
Merge "Sanity check to make sure apk or jar files are not stripped"
am: a62f435fea Change-Id: Id40fc588ceb8defef8de2133e1ee4ecca09bb9d7
-rwxr-xr-xgenerate-packages.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/generate-packages.sh b/generate-packages.sh
index 5935bca..5b18aa6 100755
--- a/generate-packages.sh
+++ b/generate-packages.sh
@@ -129,6 +129,16 @@ do
sed -i "s/$ONE_FILE_BASE/$ATMEL_FILE/" moto/staging/device-partial.mk
fi
+ # Sanity check to make sure apk or jar files are not stripped
+ if [[ ${ONE_FILE_BASE} == *.apk ]] || [[ ${ONE_FILE_BASE} == *.jar ]]
+ then
+ zipinfo ${FILEDIR_NEW}/${ONE_FILE_BASE} | grep -q classes.dex > /dev/null
+ if [[ $? != "0" ]]
+ then
+ echo "Error ${ONE_FILE} is stripped"
+ fi
+ fi
+
done
echo \ \ Setting up $COMPANY-specific makefiles
cp -R $COMPANY/staging/* $MAKEFILEDIR || echo \ \ \ \ Error copying makefiles