diff options
author | Max Kellermann <max@musicpd.org> | 2018-10-31 19:34:14 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-10-31 19:34:14 +0100 |
commit | 55b355618d60017fa92c79ddf569dab418a571a2 (patch) | |
tree | 3bfbcbaceab4a813827ed5954457da18ea2c66f2 /android/apk | |
parent | ba25a5388eb11a0570cb6ee53fc31d69f1153379 (diff) |
android/apk/make-unsigned-apk.sh: pass -X to zip to avoid storing uids
Diffstat (limited to 'android/apk')
-rwxr-xr-x | android/apk/make-unsigned-apk.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/apk/make-unsigned-apk.sh b/android/apk/make-unsigned-apk.sh index f6a2e9739..3bc4009fe 100755 --- a/android/apk/make-unsigned-apk.sh +++ b/android/apk/make-unsigned-apk.sh @@ -18,4 +18,4 @@ cp "$CLASSES_DEX" "$D/apk/" cp "$RESOURCES_APK" "$UNSIGNED_APK" cd "$D/apk" -exec zip -q -r "../`basename $UNSIGNED_APK`" . +exec zip -q -r -X "../`basename $UNSIGNED_APK`" . |