1# Add project specific ProGuard rules here. 2# You can control the set of applied configuration files using the 3# proguardFiles setting in build.gradle. 4# 5# For more details, see 6# http://developer.android.com/guide/developing/tools/proguard.html 7 8# Keep all IInterfaces which are needed for host communications. 9-keep class androidx.car.app.** extends android.os.IInterface { *; } 10# Don't obfuscate classes instantiated from outside the library via reflection 11-keep public class androidx.car.app.activity.** extends androidx.car.app.managers.Manager { *; } 12-keep public class androidx.car.app.hardware.AutomotiveCarHardwareManager { *; } 13# Keep all private final fields from a class. 14-keepclasseswithmembers @androidx.car.app.annotations.KeepFields class * { 15 *; 16}