This has bugged me for a while. Since we are missing the source SVGs for this theme, removed the leaves crudely in GIMP. Also added some basic roots. Someone more artistic is encouraged to try and improve it.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.hedgewars.hedgeroid"
android:versionCode="8"
android:installLocation="preferExternal" android:versionName="0.2">
<uses-sdk android:targetSdkVersion="14" android:minSdkVersion="7"></uses-sdk>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SDLActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation='landscape'>
</activity>
<activity android:name=".Downloader.DownloadFragment"
android:label="@string/app_name"
android:theme="@android:style/Theme.Dialog">
</activity>
<activity android:name=".Downloader.DownloadListActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation='landscape'
android:launchMode="singleTop"/>
<service android:name=".Downloader.DownloadService"/>
<activity android:name="StartGameActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation='landscape'>
</activity>
<activity android:name="TeamSelectionActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation='landscape'>
</activity>
<activity android:name="TeamCreatorActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation='landscape'
android:windowSoftInputMode="stateUnchanged">
</activity>
</application>
</manifest>