Am a newbie in android studio, I can't figure out how to stop this error even looking into other posts. I don't understand how to add activity in the manifest. Here is my manifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.drpg.dungeonkeys"
android:versionCode="4"
android:versionName="Beta.4.44" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<service android:name=".DungeonKey"
android:label="@string/dungeon_key"
android:permission="android.permission.BIND_INPUT_METHOD"
>
<meta-data android:name="android.view.im" android:resource="@xml/method"/>
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
</service>
</application>
</manifest>