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: 99d0e353db6f6b6147dce2c859c5e497fe145e3c (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
43
44
45
46
47
48
49
# 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.**

# appsFlyer
-keep class com.appsflyer.** { *; }
-dontwarn com.appsflyer.**

# myTarget
# Remove this dontwarn when MyTarget is updated to 4.6.15
-dontwarn com.my.target.nativeads.mediation.**
# Remove this dontwarn when MyTarget is updated to 4.6.16
-dontwarn com.my.target.core.net.cookie.**
-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>(...);
}