diff options
author | ByteHamster <info@bytehamster.com> | 2021-06-17 08:37:31 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2021-06-17 08:37:31 +0200 |
commit | fd8afcd01f2dcd37c5b56c962b216c9888fe18aa (patch) | |
tree | 123ce8744e3abe280ced215c4dc5bae6bf26298b | |
parent | 08951615b46e6dbc05dda08bd655020930633f3c (diff) | |
download | AntennaPod-fd8afcd01f2dcd37c5b56c962b216c9888fe18aa.zip |
Fixed path to proguard config
-rw-r--r-- | common.gradle | 2 | ||||
-rw-r--r-- | core/proguard-rules.pro | 17 |
2 files changed, 1 insertions, 18 deletions
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 *; -#} |