-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df577da
commit 9edff1a
Showing
29 changed files
with
773 additions
and
392 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,53 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# By default, the flags in this file are appended to flags specified | ||
|
||
# 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 | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
#-dontusemixedcaseclassnames | ||
#-dontskipnonpubliclibraryclasses | ||
#-verbose | ||
# | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile | ||
##---------------Begin: proguard configuration for Gson ---------- | ||
# Gson uses generic type information stored in a class file when working with fields. Proguard | ||
# removes such information by default, so configure it to keep all of it. | ||
-keepattributes EnclosingMethod | ||
-keepattributes InnerClasses | ||
-keepattributes Signature | ||
-keepattributes Exceptions | ||
|
||
# For using GSON @Expose annotation | ||
# for using GSON @Expose annotation | ||
-keepattributes *Annotation* | ||
|
||
# Gson specific classes | ||
-keep class sun.misc.Unsafe { *; } | ||
#-keep class com.google.gson.stream.** { *; } | ||
|
||
# Application classes that will be serialized/deserialized over Gson | ||
-keep class com.quickblox.core.account.model.** { *; } | ||
|
||
-keep class com.quickblox.auth.parsers.** { *; } | ||
-keep class com.quickblox.auth.model.** { *; } | ||
-keep class com.quickblox.core.parser.** { *; } | ||
-keep class com.quickblox.core.model.** { *; } | ||
-keep class com.quickblox.core.server.** { *; } | ||
-keep class com.quickblox.core.rest.** { *; } | ||
-keep class com.quickblox.core.error.** { *; } | ||
-keep class com.quickblox.core.Query { *; } | ||
|
||
-keep class com.quickblox.content.model.** { *; } | ||
|
||
-keep class com.quickblox.users.parsers.** { *; } | ||
-keep class com.quickblox.users.model.** { *; } | ||
# quickblox sdk | ||
-keep class com.quickblox.** { *; } | ||
|
||
-keep class com.quickblox.messages.parsers.** { *; } | ||
-keep class com.quickblox.messages.QBPushNotifications { *; } | ||
-keep class com.quickblox.messages.model.** { *; } | ||
-keep class com.quickblox.messages.services.** { *; } | ||
|
||
-keep class com.quickblox.chat.parser.** { *; } | ||
-keep class com.quickblox.chat.model.** { *; } | ||
|
||
-keep class org.jivesoftware.** { *; } | ||
# smack xmpp library | ||
-keep class org.jxmpp.** { *; } | ||
-keep class org.jivesoftware.** { *; } | ||
-dontwarn org.jivesoftware.** | ||
|
||
# webrtc | ||
-keep class org.webrtc.** { *; } | ||
-keep class com.quickblox.conference.** { *; } | ||
|
||
# glide | ||
-keep class com.bumptech.** { *; } | ||
|
||
-dontwarn org.jivesoftware.smackx.** | ||
# google gms | ||
-keep class com.google.android.gms.** { *; } | ||
|
||
#json | ||
-keep class org.json.** { *; } | ||
-keep class com.google.gson.reflect.TypeToken | ||
-keep class * extends com.google.gson.reflect.TypeToken | ||
-keep public class * implements java.lang.reflect.Type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.