We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
D8
1 parent 78f8863 commit f7671a7Copy full SHA for f7671a7
src/Xamarin.Android.Build.Tasks/Tasks/D8.cs
@@ -4,6 +4,7 @@
4
using System.IO;
5
using Xamarin.Android.Tools;
6
using Microsoft.Android.Build.Tasks;
7
+using System.Text;
8
9
namespace Xamarin.Android.Tasks
10
{
@@ -42,11 +43,13 @@ public class D8 : JavaToolTask
42
43
44
public string ExtraArguments { get; set; }
45
- protected override string GenerateCommandLineCommands ()
46
+ protected override string GenerateResponseFileCommands ()
47
48
return GetCommandLineBuilder ().ToString ();
49
}
50
51
+ protected override Encoding ResponseFileEncoding => Encoding.UTF8;
52
+
53
protected virtual string MainClass => "com.android.tools.r8.D8";
54
55
protected int MinSdkVersion { get; set; }
0 commit comments