From fd8afcd01f2dcd37c5b56c962b216c9888fe18aa Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Thu, 17 Jun 2021 08:37:31 +0200 Subject: [PATCH] Fixed path to proguard config --- common.gradle | 2 +- core/proguard-rules.pro | 17 ----------------- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 core/proguard-rules.pro diff --git a/common.gradle b/common.gradle index 4c3ee192d..3a7762a05 100644 --- a/common.gradle +++ b/common.gradle @@ -15,7 +15,7 @@ android { buildTypes { release { - proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard.cfg" } debug { // debug build has method count over 64k single-dex threshold. diff --git a/core/proguard-rules.pro b/core/proguard-rules.pro deleted file mode 100644 index 41a9efda7..000000000 --- a/core/proguard-rules.pro +++ /dev/null @@ -1,17 +0,0 @@ -# Add project specific ProGuard rules here. -# By default, the flags in this file are appended to flags specified -# in /Users/daniel/bin/android-sdk/tools/proguard/proguard-android.txt -# You can edit the include path and order by changing the proguardFiles -# directive in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# Add any project specific keep options here: - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#}