From e324f148a191514621a6281363558df135b68b91 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Thu, 7 Feb 2019 12:10:16 +0000 Subject: [PATCH] Fix proguard definitions. Not sure why it wasn't showing up for me on any other phone than the one I justed tested on, but it was indeed wrong and it's now fixed. --- app/proguard-rules.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/proguard-rules.txt b/app/proguard-rules.txt index 60a43a88..7f6797bf 100644 --- a/app/proguard-rules.txt +++ b/app/proguard-rules.txt @@ -43,7 +43,10 @@ -dontwarn okhttp3.internal.platform.ConscryptPlatform # DAVdroid + libs --keep,includedescriptorclasses class syncadapter.** { *; } # all DAVdroid code and deps are required +-keep,includedescriptorclasses class com.etesync.syncadapter.** { *; } # all DAVdroid code and deps are required + +# Android support +-keep,includedescriptorclasses class android.support.v4.content.FileProvider { *; } # all DAVdroid code and deps are required # gson -dontnote sun.misc.Unsafe # not available on Android