• Home
Name Date Size #Lines LOC

..--

Android.mkD03-May-2024213 115

READMED03-May-2024707 2016

device_validatorD03-May-20242.1 KiB8052

manifest.txtD03-May-202473 42

README

1Device Validator
2================
3  The device validator is a simple tool for validating XML that contains
4  information about a list of Android devices. Simply run the tool from the
5  command-line with the names of the XML files to validate as the arguments.
6  If an XML file fails to validate, the errors will be printed to standard
7  out and the program will terminate with a non-zero exit status.
8
9  See device_example.xml for an example valid XML file, and devices.xsd
10  for the schema the XML must conform to.
11
12Usage (Linux/OSX/BSD)
13---------------------
14  ./device_validator [files...]
15
16Usage (Windows)
17---------------
18  (from the untar'd directory)
19  java -cp . -jar device_validator.jar [files...]
20