Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,7 @@ bool CopyLibraryContent (string projdir, bool isAar)
var dstdir = Path.Combine (OutputDirectory, "bin");
foreach (var file in Directory.GetFiles (projdir)) {
string dstpath = Path.Combine (dstdir, Path.GetFileName (file));
if (!File.Exists (dstpath))
MonoAndroidHelper.CopyIfChanged (file, dstpath);
MonoAndroidHelper.CopyIfChanged (file, dstpath);
}
}
return true;
Expand All @@ -141,8 +140,7 @@ void CopyFiles (string srcdir)
foreach (var file in Directory.GetFiles (srcdir)) {
if (file.EndsWith (".jar", StringComparison.OrdinalIgnoreCase)) {
var dstpath = Path.Combine (OutputJarsDirectory, Path.GetFileName (file));
if (!File.Exists (dstpath))
MonoAndroidHelper.CopyIfChanged (file, dstpath);
BMonoAndroidHelper.CopyIfChanged (file, dstpath);
} else if (file.EndsWith ("annotations.zip", StringComparison.OrdinalIgnoreCase)) {
var dstpath = Path.Combine (OutputAnnotationsDirectory, Path.GetFileName (file));
if (!File.Exists (dstpath))
Expand Down