-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ updated Gradle and dependencies + removed Google Services & Firebase (because fuck Google) + removed useless styles and attributes from XML files + fixed some CustomTabActivity issues + fixed filters not working correctly + some small fixes & touches here and there
- Loading branch information
Showing
32 changed files
with
410 additions
and
200 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,98 @@ | ||
-keep class **.R { *; } | ||
-keep class **.R$* { public static final int *; } | ||
-keep class **$Properties | ||
|
||
-keep,allowoptimization public class androidx.webkit.** | ||
-keep,allowoptimization public class * extends androidx.webkit.** | ||
-keep,allowoptimization public class * extends androidx.multidex.** | ||
|
||
-keepclassmembernames,allowoptimization class * implements java.lang.annotation.Annotation | ||
-keepclassmembernames,allowoptimization public class * extends android.database.ContentObserver | ||
-keepnames public class android.webkit.* | ||
-keep public class * extends android.app.Service | ||
-keep public class * extends android.content.ContentProvider | ||
-keep public class * extends android.content.BroadcastReceiver | ||
-keep public class * implements android.os.IInterface | ||
-keep,allowobfuscation,allowoptimization interface <1> | ||
|
||
-keep public class * implements android.os.Parcelable { public static final *; } | ||
-keepclassmembernames public class * extends android.view.View { | ||
*** get*(); | ||
void set*(***); | ||
public <init>(android.content.Context); | ||
public <init>(android.content.Context, android.util.AttributeSet); | ||
public <init>(android.content.Context, android.util.AttributeSet, int); | ||
} | ||
-keepclassmembernames,allowoptimization public class * implements java.io.Serializable { | ||
static final long serialVersionUID; | ||
private static final java.io.ObjectStreamField[] serialPersistentFields; | ||
private void writeObject(java.io.ObjectOutputStream); | ||
private void readObject(java.io.ObjectInputStream); | ||
java.lang.Object writeReplace(); | ||
java.lang.Object readResolve(); | ||
} | ||
-keepclassmembers,allowoptimization enum * { | ||
public static **[] values(); | ||
public static ** valueOf(java.lang.String); | ||
} | ||
|
||
|
||
#### start Ad Adapters #### | ||
-keep class com.adcolony.** { *; } | ||
-keep class com.truenet.** { *; } | ||
-keep class com.startapp.** { *; } | ||
-keep class com.applovin.** { *; } | ||
-keep class com.facebook.ads.** { *; } | ||
-keep class com.appodeal.** { *; } | ||
-keep class org.nexage.** { *; } | ||
|
||
-dontwarn com.adcolony.** | ||
-dontwarn com.startapp.** | ||
-dontwarn com.applovin.** | ||
-dontwarn com.appodeal.** | ||
-dontwarn org.nexage.** | ||
-dontwarn com.facebook.ads.** | ||
#### end Ad Adapters #### | ||
|
||
################## GOOGLE ################## | ||
-keep class com.google.ads.** { *; } | ||
-keep class com.google.gson.** { *; } | ||
-keep class com.google.android.** { *; } | ||
-keep class com.google.firebase.** { *; } | ||
-keep class com.google.googlesignin.** { *; } | ||
-keep class com.google.android.gms.** { *; } | ||
-keep public class com.google.android.gms.** { public protected *; } | ||
-keep class com.google.common.** { *; } | ||
-keep class com.crashlytics.** { *; } | ||
|
||
-dontwarn com.google.ads.** | ||
-dontwarn com.google.common.** | ||
-dontwarn com.google.android.gms.** | ||
|
||
################## OTHERS ################## | ||
-keep class okhttp3.** { *; } | ||
-keep class retrofit2.** { *; } | ||
-keep class org.apache.** { *; } | ||
-keep class com.shaded.fasterxml.jackson.** { *; } | ||
-keepnames class com.fasterxml.jackson.** { *; } | ||
-keepnames class javax.servlet.** { *; } | ||
-keepnames class org.ietf.jgss.** { *; } | ||
-if interface * { @retrofit2.http.* <methods>; } | ||
-keepclasseswithmembers class * { @retrofit2.http.* <methods>; } | ||
-keepclassmembernames interface * { @retrofit2.http.* <methods>; } | ||
|
||
-dontwarn com.crashlytics.** | ||
-dontwarn rx.* | ||
-dontwarn okio.** | ||
-dontwarn org.apache.** | ||
-dontwarn com.squareup.okhttp3.** | ||
-dontwarn retrofit.** | ||
-dontwarn retrofit2.** | ||
-dontwarn java.lang.invoke.* | ||
-dontwarn org.jetbrains.annotations.** | ||
-dontwarn android.webkit.JavascriptInterface | ||
-dontwarn android.webkit.WebView | ||
-dontwarn org.w3c.dom.** | ||
-dontwarn org.joda.time.** | ||
-dontwarn org.shaded.apache.** | ||
-dontwarn org.ietf.jgss.** |
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 was deleted.
Oops, something went wrong.
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.