0

我有一个用于 C2DM(旧)消息的广播接收器,例如

    <receiver android:name=".C2DMRegistrationReceiver">
           <!-- Receive the actual message -->
          <intent-filter>
              <action android:name="com.google.android.c2dm.intent.RECEIVE" />
              <category android:name="com.test" />
          </intent-filter>
          <!-- Receive the registration id -->
          <intent-filter>
              <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
              <category android:name="com.test" />
          </intent-filter>
         <intent-filter>
              <action android:name="REGISTRY_RETRY" />
              <category android:name="com.test" />
          </intent-filter>
    </receiver>

出于安全原因,您应该声明此接收器的权限,例如

<receiver android:name=".C2DMRegistrationReceiver" permission="com.google.android.c2dm.permission.SEND">

我的问题是我的 3. Intent Filter 没有收到呼叫,因为我强制执行 com.google.android.c2dm.permission.SEND 权限。

所以我的问题:有没有办法为一个广播接收器定义 2 个权限,或者我可以在我的 onReceive 代码中为调用者强制执行权限?

我试过

  private boolean checkC2DMPermission(Context context) {
    String permission = "com.google.android.c2dm.permission.SEND";
    context.enforceCallingPermission(permission, "Keine C2DM Permission");
    return true;
  }

我还测试 context.checkCallingPermission(permission)了它的 -1 用于 C2DM 注册意图。Enforce 给了我一个 SecurityException。

4

1 回答 1

0

我知道这个问题很老,但我遇到了同样的问题,这出现在谷歌搜索中,所以我们开始吧。

简短的回答是你不能。

上述方法适用于执行 IPC 时,例如使用 AIDL的绑定服务。

广播接收器未执行 IPC,因此您无法从广播接收器获取发送者权限。

要强制执行权限,您必须在清单中声明广播接收器的权限。这是可行的,因为 Android 在将其传递给接收者之前会强制执行所需的权限。

权限对于接收器中的所有操作都是通用的。为了解决这个问题,您可以按照@CommonsWare 的建议将广播接收器拆分为单独的类。

于 2014-10-02T14:39:37.093 回答