我经常发现此特定错误:“无法识别启动活动:找不到默认活动启动活动时出错”

时间:2019-01-08 09:51:43

标签: android

这是我安装应用程序的adb shell命令,每次我安装应用程序时,它都会显示未找到默认活动。

$ adb shell pm install -t -r "/data/local/tmp/it.dabbl"
    Success
    APK installed in 9 s 725 ms
    Could not identify launch activity: Default Activity not found
    Error while Launching activity

4 个答案:

答案 0 :(得分:0)

这是您开始选择活动的代码

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mrrobot.mycoolweather" >
<uses-permission android:name="android.permission.INTERNET"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >

    <activity
        android:name=".activity.ChooseAreaActivity" //Just put your Activity Which you want to Run
        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>

答案 1 :(得分:0)

您必须在清单中定义启动器活动。

  <activity
    android:name=".MainActivity" //Whatever Activity you want to launch first>
      <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
  </activity>

答案 2 :(得分:0)

因此,在Internet上搜索一个小时后,我从项目结构中检查出我没有设置默认配置设置。要解决此问题,您必须打开项目结构,然后添加默认配置,然后与gradle同步将解决此问题。

答案 3 :(得分:0)

我遇到了同样的问题,并通过手动设置启动活动来解决。从菜单中选择“运行->编辑配置...”,然后在“启动选项”下选择“启动:指定活动”和“活动:your.launch.activity”,其中“ your.launch.activity”是活动您要启动。