Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
There are similar issue with this:
adding
```#-keep class android.support.v4.** { *; }
#-keep interface android.support.v4.** { *; }```
on consumer proguard that not using androidx, enable jetifier on your project, the proguard.txt from that library will adding new rules:
```-keep class androidx.** { *; }
-keep interface androidx.** { *; }```
adding
```#-keep class android.support.v4.** { *; }
#-keep interface android.support.v4.** { *; }```
on consumer proguard that not using androidx, enable jetifier on your project, the proguard.txt from that library will adding new rules:
```-keep class androidx.** { *; }
-keep interface androidx.** { *; }```
Description
Fix this by not showing this warning when processing individual files.