From 6a88d6c5a4185792d21ce8069195aec2464a3015 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sat, 25 Mar 2017 09:38:05 +0100 Subject: [PATCH] gradle: Avoid catch-22 where you can't change the config when it starts out at release (sync needs to pass) --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 10aa4c930c..77adbe58e9 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,7 +20,7 @@ android { } else { release { // Can't build release builds without a key store. - throw new GradleException('This build type should only be invoked from CI. Use Optimized builds instead.') + println 'This build type should only be invoked from CI. Use Optimized builds instead.' } } }