# Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.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 #-overloadaggressively -keep class nl.gravity.vecoresdk.VecoreSDK { public ; public static ; protected ; public (...); } -keep class nl.gravity.vecoresdk.VecoreSDK$State { public static ; } -keep class nl.gravity.vecoresdk.VecoreSDK$Command { public static ; } #-keep class nl.gravity.vecoresdk.VecoreApi$BaseResponse { # public ; # public ; #} -keep,allowshrinking class nl.gravity.vecoresdk.GenericBluetoothService { public ; public static ; protected ; public (...); } -keep,allowshrinking class nl.gravity.vecoresdk.GeproBoxBluetoothService { public ; public static ; protected ; public (...); } -keep,allowshrinking class nl.gravity.vecoresdk.AxaBluetoothService { public ; public static ; protected ; public (...); } -keep class nl.gravity.vecoresdk.AxaBluetoothService$ConnectedDevice { *; } -keep public interface nl.gravity.vecoresdk.VecoreSDKCallback { *; } -keep public interface nl.gravity.vecoresdk.VecoreSDKDebugHandler { *; } -keep public enum nl.gravity.vecoresdk.LockType { *; } # EventBus -keepattributes *Annotation* -keepclassmembers class * { @org.greenrobot.eventbus.Subscribe ; } -keep class org.greenrobot.eventbus.ThreadMode { *; } # Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and # EnclosingMethod is required to use InnerClasses. -keepattributes Signature, InnerClasses, EnclosingMethod # Retrofit does reflection on method and parameter annotations. -keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations # Retain service method parameters when optimizing. -keepclassmembers,allowshrinking,allowobfuscation interface * { @retrofit2.http.* ; } # Ignore annotation used for build tooling. -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement # Ignore JSR 305 annotations for embedding nullability information. -dontwarn javax.annotation.** # Guarded by a NoClassDefFoundError try/catch and only used when on the classpath. -dontwarn kotlin.Unit # Top-level functions that can only be used by Kotlin. -dontwarn retrofit2.KotlinExtensions -dontwarn retrofit2.KotlinExtensions$* # With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy # and replaces all potential values with null. Explicitly keeping the interfaces prevents this. -if interface * { @retrofit2.http.* ; } -keep,allowobfuscation interface <1> -dontwarn com.squareup.okhttp3.** -keep class com.squareup.okhttp3.* { *;} -dontwarn okio. # Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory, # JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter) -keep class * implements com.google.gson.TypeAdapter -keep class * implements com.google.gson.TypeAdapterFactory -keep class * implements com.google.gson.JsonSerializer -keep class * implements com.google.gson.JsonDeserializer -dontwarn module-info