-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix build #1384
Fix build #1384
Conversation
@@ -66,7 +68,7 @@ public void MenuActionLayout () | |||
app:showAsAction = ""never"" /> | |||
|
|||
</menu>"); | |||
Monodroid.AndroidResource.UpdateXmlResource (actions, new Dictionary<string, string> (), null); | |||
Monodroid.AndroidResource.UpdateXmlResource (actions, xmlFilePath, new Dictionary<string, string> (), null); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be Path.Combine (path, "res")
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean instead of actions
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of xmlFilePath. The ‘res’ Param should be te root of the resource directory. I know why this happened now. There were two PR's one altered the UpdateXmlResource
signature, bother were open at the the time the commits were made so they both passed. One was merged, the other which added the test was not rebased before merging, so it looked like it was working.
6dfb1f7
to
a415064
Compare
a415064
to
9874f4a
Compare
The test didn't use the correct `UpdateXmlResource` overload. This commit makes the build work.
The test didn't use the correct
UpdateXmlResource
overload. This commit makesthe build work.