Something like this should be enough:
function doctype() {
if (isset($_SERVER['HTTP_USER_AGENT'])) {
$userAgent = strtolower($_SERVER['HTTP_USER_AGENT']);
if (strpos($userAgent, 'android') !== false) {
echo '<div>Download app link</div>';
}
}
qa_html_theme_base::doctype();
}