以下是我的AndroiManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.helloworld"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".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>
</manifest>
我想使用Monkeyrunner启动我的应用程序,但是当我给出命令时
device.startActivity(component='com.exmaple.helloworld/com.example.helloworld.MainActivity')
它无法启动我的应用。我错过了什么吗?我读了Issues using monkeyrunner startActivity,但仍然没有用。
最佳答案
在AndroidManifest.xml文件中为android:exported="true"
添加activity
行
关于android - MonkeyRunner无法使用startActivity,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30818284/