猴子说没有发现任何活动

时间:2013-03-27 06:01:13

标签: android testing android-activity monkey

以前在我的设置中工作正常,现在即使对于测试应用程序也会出现此错误

默认清单文件如下所示;

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.test.MainActivity"
        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>

猴子输出的图像

enter image description here

项目名称和目录匹配,如果我没有错,如此处所示

enter image description here

我不知道我在这里做错了什么..请帮助...

2 个答案:

答案 0 :(得分:0)

在您的案例中{p> -p <allowed-package-name> -p com.example.test

答案 1 :(得分:0)

我已经在一台新的干净的PC上安装了eclipse,现在奇怪的是它的工作原理..所以这个安装中的东西正在创建这个错误..所以现在,找出原因......

相关问题