-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e3829e
commit 67ca2dd
Showing
3 changed files
with
24 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Compiler Error XA1000 | ||
|
||
This error will be emitted when we are unable to find a matching custom new in the | ||
ResourceCaseMap string. | ||
|
||
As part of the build process `Namespace.CustomViewFoo` items in layout files are | ||
replaced with `{MD5Hash}.CustomViewFoo`. We attempt to replace a couple of variants | ||
of the `Namespace.CustomViewFoo`. One is the original casing found in the C# source | ||
files. The other is all lowercase. If we cannot find a match we will do a case | ||
insensitive lookup to see if there are items which do match. If we find one this | ||
error will be raised. | ||
|
||
We found a matching key 'Namespace.CustomViewFoo' for 'NameSpace.CustomViewFoo'. But the casing was incorrect. Please correct the casing |
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,7 @@ | ||
# Compiler Warning XA1001 | ||
|
||
AndroidResgen: Warning while updating Resource XML '{filename}': {Message} | ||
|
||
This warning is raised if we encounter an unknown issue when processing | ||
the layout and resources. It is a generic warning that does not describe | ||
any specific problem. The details will be in the `{Message}`. |