Enhance the app with text.
<?xml version="1.0" encoding="UTF-8"?>
<MAF xmlns="http://schemas.sap.com/maf/2012/cfg">
    <!-- Define a "tile" - it translates to UIViewController -->
    <Tile tileId="First Extensible Screen">
        <!-- This is our root view -->
        <P pid="isRoot" value="true"/>
        <!-- Define the layout container. All UI elements included in a layout container will be auto-arranged -->
        <LinearContainer layout="vertical">
            <!-- Define our label -->
            <UIElement type="label">
                <!-- Assign the text to be displayed -->
                <P pid="text" value="Hello World! This is Extensibility!"></P>
                <!-- Default styling is automatically applied (see MAFUIComponents.bundle -> SAPDefaultStyle.xml) -->
            </UIElement>
        </LinearContainer>
    </Tile>
</MAF>
            <P pid="halign" value="center"></P> <P pid="margin_top" value="20pt"></P>
<P pid="valign" value="center"></P>