mirror of
https://github.com/whyorean/AuroraStore.git
synced 2026-06-19 04:58:47 -04:00
- Rewrite the AuroraStore from scratch, so technically its no more a fork of YalpStore
but it does share some code from YalpStore.
- Redesigned the complete app
- Rewrote the framework using RXJava, OKHttp3, Glide and ViewBinding using ButterKnife
- Added in-app DownloadManager using Fetch2
- New improved Notification Manager
- Added support for SplitApk installation, reference was SAI
- Added dedicated token-dispenser
- The Licence and Copyrights are not yet decided
- This description is prone to change, I may force push XD
54 lines
2.0 KiB
Prolog
54 lines
2.0 KiB
Prolog
# Add project specific ProGuard rules here.
|
|
# You can control the set of applied configuration files using the
|
|
# proguardFiles setting in show.gradle.
|
|
#
|
|
# For more details, see
|
|
# 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 *;
|
|
#}
|
|
|
|
# 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
|
|
# JSR 305 annotations are for embedding nullability information.
|
|
-dontwarn javax.annotation.**
|
|
|
|
# A resource is loaded with a relative path so the package of this class must be preserved.
|
|
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
|
|
|
|
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.*
|
|
|
|
# OkHttp platform used only on JVM and when Conscrypt dependency is available.
|
|
-dontwarn okhttp3.internal.platform.ConscryptPlatform
|
|
|
|
-dontwarn okio.**
|
|
-keep class com.google.**
|
|
-dontwarn com.google.**
|
|
|
|
# Glide
|
|
-keep public class * implements com.bumptech.glide.module.GlideModule
|
|
-keep public class * extends com.bumptech.glide.module.AppGlideModule
|
|
-keep public enum com.bumptech.glide.load.ImageHeaderParser$** {
|
|
**[] $VALUES;
|
|
public *;
|
|
}
|
|
|
|
# ButterKnife
|
|
# Retain generated class which implement Unbinder.
|
|
-keep public class * implements butterknife.Unbinder { public <init>(**, android.view.View); }
|
|
|
|
# Prevent obfuscation of types which use ButterKnife annotations since the simple name
|
|
# is used to reflectively look up the generated ViewBinding.
|
|
-keep class butterknife.*
|
|
-keepclasseswithmembernames class * { @butterknife.* <methods>; }
|
|
-keepclasseswithmembernames class * { @butterknife.* <fields>; } |