私のマニフェストファイルは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.Smsr"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="@string/app_name"
android:targetPackage="com.example.Smsr" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".SmsrActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".SimpleSmsReciever" >
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
</application>
</manifest>
エラーは次のとおりです。smsrがandroid.test.InstrumentationTestRunnerインストルメンテーションを指定していないか、AndroidManifest.xmlにuses-library android.test.runnerを宣言していません 。ここに2つのクラスがあります。最初はメインアクティビティ、つまりsmsrActivityで、その他はsimplesmsrecieverクラスです。よろしくお願いします