Note: To configure this page for a particular app pass the package name as parameter. E.g. http://appaware.com/widgets/app-landing?p=com.rovio.angrybirds
If you are a small indie developer or never had the time to develop a website for your Android app, then look no further. With one line of code you can have your own, always fresh landing page. Simply embed a small code snippet in your index page and you get for free:
Put the following code as your app landing page
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="ROBOTS" content="INDEX,FOLLOW"/>
<meta name="description" content="Use the unique powers of the Angry Birds to destroy the greedy pigs' fortresses!"/>
<meta name="keywords" content="Angry Birds"/>
<meta name="author" content="Rovio Mobile Ltd."/>
<meta name="publisher" content="Rovio Mobile Ltd."/>
<title>Angry Birds</title>
</head>
<body>
<div class="container" style="margin-top: 30px">
<div class="row">
<div class="span12">
<div class="appaware-full-app"> <a href="http://appaware.com/app/com.rovio.angrybirds">Angry Birds on AppAware</a></div>
</div>
</div>
</div>
<script type="text/javascript" src="http://appaware.com/widgets/aa_full.js"></script>
</body>
</html>
Embed the following code snippet in your index page
<div class="appaware-full-app"><a href="http://appaware.com/app/angry-birds/com.rovio.angrybirds">Angry Birds on AppAware</a></div><script type="text/javascript" src="http://appaware.com/widgets/aa_full.js"></script>
Simply redirect to your app page at AppAware. E.g in PHP:
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://appaware.com/app/angry-birds/com.rovio.angrybirds");
exit();
?>
Notes: