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: 62f92b0cc852cab85cb2e43aee481d25c04369bc (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.**,** {*;}
# support library bug
-dontwarn android.support.**

# flurry
-dontwarn com.flurry.**

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

# pushwoosh
-keep class com.pushwoosh.** { *; }
-keep class com.arellomobile.** { *; }
-dontwarn com.pushwoosh.**
-dontwarn com.arellomobile.**

# myTarget
-dontwarn ru.mail.android.mytarget.**
-dontwarn com.mopub.**

-dontoptimize
-keepattributes **

# 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>(...);
}