以编程方式检查广播接收器权限

时间:2012-08-14 20:14:24

标签: android android-intent broadcastreceiver android-permissions

我有一个广播接收器用于我的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。

1 个答案:

答案 0 :(得分:0)

我知道这个问题已经过时了,但我遇到了同样的问题,这是谷歌搜索中出现的问题,所以我们就这样了。

简短的回答是你不能。

上述methods适用于执行IPC时,例如使用AIDL bound service

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

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

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