从 ADB 安装后静态 BroadcastReceiver 不工作

Static BroadcastReceiver not Working after Installation from ADB

我正在处理一个需要通过 adb 广播自定义意图 "com.example.demo.action.LAUNCH" 来启动应用程序的项目。

我的计划是静态注册一个广播接收器"LaunchAppReceiver",它将在接收到自定义意图时启动应用程序。

我通过调用

安装了 .apk
adb install -r <pakcageName>

然后我通过调用

发送了意图
adb shell am broadcast -a com.example.demo.action.LAUNCH

然而,发送意向后没有任何反应。似乎广播接收器根本没有收到意图。在接收意图之前,我是否需要以某种方式实例化接收者?

注意:由于android设备是远程的,我必须使用adb来处理安装和启动。

谢谢!!


我声明广播接收器如下

public class LaunchAppReceiver extends BroadcastReceiver{

    public LaunchAppReceiver () {}

    @Override
    public void onReceive(Context context, Intent intent) {

        Intent newIntent = new Intent(context, MainActivity.class);
        newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(newIntent);
    }
}

并将其静态注册在 AndroidManifest.xml 中。

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        android:enabled="true">
        <receiver
            android:name="com.example.demo.LaunchAppReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="com.example.demo.action.LAUNCH"/>
            </intent-filter>
        </receiver>
        <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>

终于解决了这个问题。

自 Honeycomb 以来,所有新安装的应用程序将进入 STOP 阶段,直到它们至少启动一次。 Android 为所有广播意图添加一个标志“FLAG_EXCLUDE_STOPPED_PACKAGES”,阻止它们到达已停止的应用程序。 http://droidyue.com/blog/2014/01/04/package-stop-state-since-android-3-dot-1/

要解决这个问题,只需简单地在我们发送的意图中添加标志“FLAG_INCLUDE_STOPPED_PACKAGES”。就我而言,我将 adb 命令修改为

adb shell am broadcast -a com.example.demo.action.LAUNCH --include-stopped-packages