0

最初にテスト プロジェクトを作成したとき、パッケージは com.example.test であると伝えました。ここで、ソース パッケージの名前を com.imcool.android に変更し、マニフェストのパッケージも更新しました。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.imcool.android"
    android:versionCode="1"
    android:versionName="1.0" >

完全にクリーンアップした後、Android から起動構成を更新するかどうか尋ねられたので、[はい] をクリックします。Android単体テストを実行しようとすると、次のエラーが発生します。

Test run failed: Unable to find instrumentation info for: ComponentInfo{com.imcool.android/android.test.InstrumentationTestRunner}

マニフェストのパッケージを com.example.test に戻すと、実際のソース パッケージ名がまだ com.imcool.android であっても機能します。

どうしたんだ?

4

1 に答える 1

1

あなたに尋ねたのはアンドロイドではありません。それは日食です。:)

anyway, just go to the run-configuarations and delete all of the items that aren't needed anymore , and do the run again . this way it will forget about the previous configuration and will use only those that you ask of it.

于 2012-05-25T23:29:49.903 に答える