<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="org.walley.androidtop"
  android:versionCode="3"
  android:versionName="0.0.3">
  <application 
    android:label="@string/app_name" 
    android:icon="@drawable/ic_launcher"
    android:theme="@android:style/Theme.NoTitleBar"
  >
    <activity 
      android:name="androidtop"
      android:label="@string/app_name">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
  </application>

  <supports-screens 
    android:resizeable="true"
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true"
  />

  <uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
  <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10" />
</manifest>
