From becd9e6155f4d47f8f66689b74d2a19b42139a87 Mon Sep 17 00:00:00 2001 From: James Hamilton Date: Thu, 3 Feb 2022 08:57:29 +0100 Subject: [PATCH] Update ProGuard version in example (#1777) Update ProGuard version and remove exclude for Android build tools dependency. The exclude should no longer be required (https://github.com/Guardsquare/proguard/issues/66). --- tutorials/Native_distributions_and_local_execution/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tutorials/Native_distributions_and_local_execution/README.md b/tutorials/Native_distributions_and_local_execution/README.md index 3c1946d4bb..154c889f21 100755 --- a/tutorials/Native_distributions_and_local_execution/README.md +++ b/tutorials/Native_distributions_and_local_execution/README.md @@ -590,9 +590,7 @@ buildscript { mavenCentral() } dependencies { - classpath("com.guardsquare:proguard-gradle:7.1.1") { - exclude("com.android.tools.build") - } + classpath("com.guardsquare:proguard-gradle:7.2.0") } }