Welcome to mirror list, hosted at ThFree Co, Russian Federation.

proguard-mwm.txt « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 748912144d7e8991a33087ce7a203ad7f8450d13 (plain)
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
# obfuscate supportV7 menu subclasses. it fixes bug with some Samsung and other devices ROMS based on android 4.2.2.
# more details here : https://code.google.com/p/android/issues/detail?id=78377
-keep class !android.support.v7.internal.view.menu.**,** {*;}

# flurry
-dontwarn com.flurry.**

# support library bug
-dontwarn android.support.**

# parse
-dontwarn com.squareup.okhttp.**
-dontwarn okio.**
-dontwarn com.facebook.**

-dontoptimize
-keepattributes **

# log proguard info
#
#-verbose
#
#-printseeds seeds.txt
#-printusage unused.txt
#-printmapping mapping.txt


# Gson support
-keep class com.mapswithme.util.Gsonable
-keep class * implements com.mapswithme.util.Gsonable

-keepclassmembernames class * implements com.mapswithme.util.Gsonable {
  !transient <fields>;
}

-keepnames class * implements com.mapswithme.util.Gsonable {
  !transient <fields>;
}

-keepclassmembers class * implements com.mapswithme.util.Gsonable {
  <init>(...);
}