From 90aa1d1ce77d98f0a3c25a1bb58796c1a3752105 Mon Sep 17 00:00:00 2001
From: Torsten Grote <t@grobox.de>
Date: Wed, 27 Sep 2017 11:32:57 -0300
Subject: [PATCH] Disable PNG crunching for reproducibility

This can help to prevent non-determinism introduced by the crunching
process.

More information:
https://gitlab.com/fdroid/fdroid-website/commit/e48f9f0773568d92ff764ad3cc79eed0ae2c497e

With enabled and disabled crunching,
the size of the signed release APK was 17809681 bytes.

Related to #164
---
 briar-android/build.gradle | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/briar-android/build.gradle b/briar-android/build.gradle
index e4b9ab4feb..5aec4dc039 100644
--- a/briar-android/build.gradle
+++ b/briar-android/build.gradle
@@ -107,6 +107,10 @@ android {
 		targetCompatibility JavaVersion.VERSION_1_7
 	}
 
+	aaptOptions {
+		cruncherEnabled = false
+	}
+
 	lintOptions {
 		warning 'MissingTranslation'
 		warning 'ImpliedQuantity'
-- 
GitLab