Regarding the Mali UI Engine, you have tutorials under tutorial_examples and the Lotion UI example under example_applications. When you build them under Visual Studio you'll get the binaries under debug or release folders depending on your build options.
C:\Users\Daniel\Documents\ARM Mali Developer Tools\Mali GPU UI Engine v2.3\tutorial_examples\03_using_the_filesystem_interface\Debug>03demoTrying to load a non-existent file:An expected exception was thrown:I/O-Exception occured: File not found: ./data/non-existing-file.txtReading content from a file, writing it to another file and then comparing the output of the two files:An unexpected exception was thrown:I/O-Exception occured: unable to write file: ./data/write.txt
Managed<OutputStream> output = filesystem->createOutputStream("../data/write.txt");Managed<InputStream> input = filesystem->createInputStream("../data/read.txt");
C:\Users\Daniel\Documents\ARM Mali Developer Tools\Mali GPU UI Engine v2.3\tutorial_examples\03_using_the_filesystem_interface\Debug>03filesystemTrying to load a non-existent file:An expected exception was thrown:I/O-Exception occured: File not found: ./../data/non-existing-file.txtReading content from a file, writing it to another file and then comparing the output of the two files:The content of the two files matched.