forked from dotnet/android
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Xamarin.Android.Build.Tasks] d8 and r8 support
Fixes: dotnet#1423 Fixes: dotnet#2040 WIP * Using r8 version 1.2.48: https://r8.googlesource.com/r8/+/1.2.48
- Loading branch information
1 parent
e390702
commit 151db1a
Showing
22 changed files
with
523 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Compiler Error/Warning XA4305 | ||
|
||
The `CreateMultiDexMainDexClassList`, `CompileToDalvik` or `R8` | ||
MSBuild task encountered a `multidex.keep` file that was not found on | ||
disk. You can customize `multidex` settings for your Xamarin.Android | ||
application by adding files with the `MultiDexMainDexList` build item, | ||
which are combined into a final `multidex.keep` file. | ||
|
||
To learn more about `multidex` and how it relates to Android | ||
development, see the [Android documentation][android]. | ||
|
||
## Resolution | ||
|
||
Verify you are not declaring a `MultiDexMainDexList` build item that | ||
does not exist. | ||
|
||
Consider submitting a [bug][bug] if you are getting this error/warning | ||
under normal circumstances. | ||
|
||
[android]: https://developer.android.com/studio/build/multidex | ||
[bug]: https://github.com/xamarin/xamarin-android/wiki/Submitting-Bugs,-Feature-Requests,-and-Pull-Requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule r8
added at
671655
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Condition=" '$(TpnIncludeExternalDependencies)' == 'True' "> | ||
<ThirdPartyNotice Include="google/r8"> | ||
<LicenseFile>$(MSBuildThisFileDirectory)\r8\LICENSE</LicenseFile> | ||
<SourceUrl>https://r8.googlesource.com/r8/</SourceUrl> | ||
</ThirdPartyNotice> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
// Copyright (C) 2018 Xamarin, Inc. All rights reserved. | ||
|
||
using System; | ||
using System.Linq; | ||
using System.IO; | ||
using Microsoft.Build.Framework; | ||
using Microsoft.Build.Utilities; | ||
using System.Collections.Generic; | ||
using Xamarin.Android.Tools; | ||
|
||
namespace Xamarin.Android.Tasks | ||
{ | ||
|
||
public class R8 : JavaToolTask | ||
{ | ||
[Required] | ||
public string R8JarPath { get; set; } | ||
|
||
[Required] | ||
public string OutputDirectory { get; set; } | ||
|
||
public string Configuration { get; set; } | ||
|
||
// It is loaded to calculate --min-api, which is used by desugaring part to determine which levels of desugaring it performs. | ||
[Required] | ||
public string AndroidManifestFile { get; set; } | ||
|
||
// general r8 feature options. | ||
public bool EnableDesugar { get; set; } | ||
public bool EnableMinify { get; set; } // The Task has the option, but it is not supported at all. | ||
public bool EnableTreeShaking { get; set; } | ||
|
||
// Java libraries to embed or reference | ||
[Required] | ||
public string ClassesZip { get; set; } | ||
[Required] | ||
public string JavaPlatformJarPath { get; set; } | ||
public ITaskItem [] JavaLibrariesToEmbed { get; set; } | ||
public ITaskItem [] JavaLibrariesToReference { get; set; } | ||
|
||
// used for proguard configuration settings | ||
[Required] | ||
public string AndroidSdkDirectory { get; set; } | ||
[Required] | ||
public string AcwMapFile { get; set; } | ||
public string ProguardGeneratedReferenceConfiguration { get; set; } | ||
public string ProguardGeneratedApplicationConfiguration { get; set; } | ||
public string ProguardCommonXamarinConfiguration { get; set; } | ||
[Required] | ||
public string ProguardConfigurationFiles { get; set; } | ||
public string ProguardMappingOutput { get; set; } | ||
|
||
// multidex | ||
public bool EnableMultiDex { get; set; } | ||
public string MultiDexMainDexListFile { get; set; } | ||
|
||
public string R8ExtraArguments { get; set; } | ||
|
||
protected override string GenerateCommandLineCommands () | ||
{ | ||
var cmd = new CommandLineBuilder (); | ||
|
||
cmd.AppendSwitchIfNotNull ("-jar ", R8JarPath); | ||
|
||
if (!string.IsNullOrEmpty (R8ExtraArguments)) | ||
cmd.AppendSwitch (R8ExtraArguments); // it should contain "--dex". | ||
if (Configuration.Equals ("Debug", StringComparison.OrdinalIgnoreCase)) | ||
cmd.AppendSwitch ("--debug"); | ||
|
||
// generating proguard application configuration | ||
if (EnableTreeShaking) { | ||
var acwLines = File.ReadAllLines (AcwMapFile); | ||
using (var appcfg = File.CreateText (ProguardGeneratedApplicationConfiguration)) | ||
for (int i = 0; i + 2 < acwLines.Length; i += 3) | ||
try { | ||
var line = acwLines [i + 2]; | ||
var java = line.Substring (line.IndexOf (';') + 1); | ||
appcfg.WriteLine ("-keep class " + java + " { *; }"); | ||
} catch { | ||
// skip invalid lines | ||
} | ||
if (!string.IsNullOrWhiteSpace (ProguardCommonXamarinConfiguration)) | ||
using (var xamcfg = File.Create (ProguardCommonXamarinConfiguration)) | ||
GetType ().Assembly.GetManifestResourceStream ("proguard_xamarin.cfg").CopyTo (xamcfg); | ||
var configs = ProguardConfigurationFiles | ||
.Replace ("{sdk.dir}", AndroidSdkDirectory + Path.DirectorySeparatorChar) | ||
.Replace ("{intermediate.common.xamarin}", ProguardCommonXamarinConfiguration) | ||
.Replace ("{intermediate.references}", ProguardGeneratedReferenceConfiguration) | ||
.Replace ("{intermediate.application}", ProguardGeneratedApplicationConfiguration) | ||
.Replace ("{project}", string.Empty) // current directory anyways. | ||
.Split (';') | ||
.Select (s => s.Trim ()) | ||
.Where (s => !string.IsNullOrWhiteSpace (s)); | ||
foreach (var file in configs) { | ||
if (File.Exists (file)) | ||
cmd.AppendSwitchIfNotNull ("--pg-conf ", file); | ||
else | ||
Log.LogCodedWarning ("XA4304", file, 0, "Proguard configuration file '{0}' was not found.", file); | ||
} | ||
cmd.AppendSwitchIfNotNull ("--pg-map-output ", ProguardMappingOutput); | ||
} | ||
|
||
// multidexing | ||
if (EnableMultiDex) { | ||
if (string.IsNullOrEmpty (MultiDexMainDexListFile)) { | ||
Log.LogCodedWarning ("XA4305", $"MultiDex is enabled, but '{nameof (MultiDexMainDexListFile)}' was not specified."); | ||
} else if (!File.Exists (MultiDexMainDexListFile)) { | ||
Log.LogCodedWarning ("XA4305", MultiDexMainDexListFile, 0, $"MultiDex is enabled, but main dex list file '{MultiDexMainDexListFile}' does not exist."); | ||
} else { | ||
cmd.AppendSwitchIfNotNull ("--main-dex-list ", MultiDexMainDexListFile); | ||
} | ||
} | ||
|
||
// desugaring | ||
var doc = AndroidAppManifest.Load (AndroidManifestFile, MonoAndroidHelper.SupportedVersions); | ||
int minApiVersion = doc.MinSdkVersion == null ? 4 : (int)doc.MinSdkVersion; | ||
cmd.AppendSwitchIfNotNull ("--min-api ", minApiVersion.ToString ()); | ||
|
||
if (!EnableTreeShaking) | ||
cmd.AppendSwitch ("--no-tree-shaking"); | ||
if (!EnableDesugar) | ||
cmd.AppendSwitch ("--no-desugaring"); | ||
if (!EnableMinify) | ||
cmd.AppendSwitch ("--no-minification"); | ||
|
||
var injars = new List<string> (); | ||
var libjars = new List<string> (); | ||
injars.Add (ClassesZip); | ||
if (JavaLibrariesToEmbed != null) | ||
foreach (var jarfile in JavaLibrariesToEmbed) | ||
injars.Add (jarfile.ItemSpec); | ||
libjars.Add (JavaPlatformJarPath); | ||
if (JavaLibrariesToReference != null) | ||
foreach (var jarfile in JavaLibrariesToReference.Select (p => p.ItemSpec)) | ||
libjars.Add (jarfile); | ||
|
||
cmd.AppendSwitchIfNotNull ("--output ", OutputDirectory); | ||
foreach (var jar in libjars) | ||
cmd.AppendSwitchIfNotNull ("--lib ", jar); | ||
foreach (var jar in injars) | ||
cmd.AppendFileNameIfNotNull (jar); | ||
|
||
return cmd.ToString (); | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.