Closed leonluc-dev closed 6 years ago
I am getting this as well
//Bad answer was here; removed
-keep public class android.support.** { *; }
- is too broad.
-keep public class android.support.v7.widget.** { *; }
- is more specific and should be enough :)
@borninmusic
By some reasons, not for me (too many warnings from proguard and as result it's not build), but you are right, it's to broad and now I stayed on adding to answer of @gameleon-dev this rule:
-dontwarn android.support.**
it's enough :)
Also, I cleared my message above, that no one would use this bad answer
We just add the rules Google ships. I believe they fixed it upstream in 28.0.0 which we will be shipping soon.
Xamarin.Android Version (eg: 6.0):
8.2.0.15 (HEAD/22d97e153) Visual Studio 2017 Professional (15.6.2)
Operating System & Version (eg: Mac OSX 10.11):
Windows 10 Professional 1709
Support Libraries Version (eg: 23.3.0):
27.0.2
Describe your Issue:
Since updating to version 27.0.2 of the support library packages there seems to be some issues with Proguard stripping required classes of the support library when its enabled. This causes several
ClassNotFoundException
orInflaterException
at runtime.In version 26.1.0.1 of the packages it seems the recommended proguard rules are contained within the package and are automatically applied. For 27.0.2 it seems these automatically added proguard rules are missing or incomplete.
A temporary workaround I'm currently using is to add a custom proguard config file to the project:
Include any relevant Exception Stack traces, build logs, adb logs:
Examples of exception messages:
Caused by: android.view.InflateException: Binary XML file line #1: Binary XML file line #1: Error inflating class android.support.percent.PercentRelativeLayout
java.lang.RuntimeException: Unable to instantiate receiver com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" on path: DexPathList[[zip file "/data/app/com.myapp.MySupportTestApp-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.myapp.MySupportTestApp-1, /vendor/lib, /system/lib]]