You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Xamarin.Android.Build.Tasks] Running Multi-Dex on Windows (#392)
Fixes: https://bugzilla.xamarin.com/show_bug.cgi?id=51356
Commit a967b24 added a PROGUARD_HOME environment variable when
running Proguard and MultiDex. However it does break things on
windows. The problem is down to a bug in the Google proguard.bat
file where a " is in the wrong place. This results in the
following error.
Unable to access jarfile C:\Program Files (x86)\Android\android-sdk\tools\proguard"\lib\proguard.jar -injars 'C:\Program'
Note the " in the wrong place. This does NOT occur if we allow
the android tooling to find proguard itself rather than specifying
a path (via the environment variable)
This commit removes the variable from the Windows
environment this seems to fix the issue.
0 commit comments