<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.pulpdust.da.kakomun"
    android:versionCode="1"
    android:versionName="0.1"
    android:installLocation="auto">

    <uses-sdk
        android:minSdkVersion="4"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
         <activity 
            android:name=".KakomunDaActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateUnchanged" >
            <intent-filter>
                <action android:name="org.pulpdust.da.action.LAUNCH" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>

</manifest>
