-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproguard-rules.pro
56 lines (45 loc) · 1.61 KB
/
proguard-rules.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\Jan\Documents\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
#####################################
# Car Report
#####################################
# Reports
-keep class org.juanro.autumandu.data.report.* { *; }
# Preferences
-keep class org.juanro.autumandu.gui.Preferences*
-keep class org.juanro.autumandu.gui.HelpActivity$*
# Sync Providers
-keep class org.juanro.autumandu.util.sync.provider.*
#####################################
# Libraries
#####################################
# Dropbox
-dontwarn com.dropbox.core.http.OkHttpRequestor
-dontwarn com.dropbox.core.http.OkHttpRequestor$*
-dontwarn javax.servlet.**
# Misc
-dontwarn org.slf4j.*
# OkHttp
-keepattributes Signature,*Annotation*
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
-dontwarn okio.*
# Google API Client, Google API Drive Service
-keepattributes Signature,RuntimeVisibleAnnotations,AnnotationDefault
-keepclassmembers class * {
@com.google.api.client.util.Key <fields>;
}
-keep class com.google.api.client.** { *;}
-keep interface com.google.api.client.** { *;}
-keep class com.google.api.services.drive.** { *; }
-keep class * extends com.google.api.client.json.GenericJson { *; }
-dontwarn com.google.**
# RecyclerView
-keep class androidx.appcompat.widget.RebindReportingHolder { *; }