This repository has been archived by the owner on Jan 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from Connexions/material
Change to Material design
- Loading branch information
Showing
233 changed files
with
1,754 additions
and
1,691 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
## GSON 2.2.4 specific rules ## | ||
|
||
# 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 Signature | ||
|
||
# For using GSON @Expose annotation | ||
-keepattributes *Annotation* | ||
|
||
-keepattributes EnclosingMethod | ||
|
||
# Gson specific classes | ||
-keep class sun.misc.Unsafe { *; } | ||
-keep class com.google.gson.stream.** { *; } | ||
|
||
-keep public class android.support.v7.widget.** { *; } | ||
-keep public class android.support.v7.internal.widget.** { *; } | ||
-keep public class android.support.v7.internal.view.menu.** { *; } | ||
|
||
-keep public class * extends android.support.v4.view.ActionProvider { | ||
public <init>(android.content.Context); | ||
} | ||
|
||
# http://stackoverflow.com/questions/29679177/cardview-shadow-not-appearing-in-lollipop-after-obfuscate-with-proguard/29698051 | ||
-keep class android.support.v7.widget.RoundRectDrawable { *; } | ||
|
||
# support design library | ||
-dontwarn android.support.design.** | ||
-keep class android.support.design.** { *; } | ||
-keep interface android.support.design.** { *; } | ||
-keep public class android.support.design.R$* { *; } | ||
|
||
-keep class android.support.v7.** { *; } | ||
-keep interface android.support.v7.** { *; } | ||
|
||
-keep class org.cnx.android.** {*;} |
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.