Blame | Last modification | View Log | RSS feed
<?xml version="1.0" encoding="utf-8"?><!-- Copyright (C) 2012 The Android Open Source ProjectLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.--><manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.google.firebase.iid"><uses-sdk android:minSdkVersion="9"/><uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /><uses-permission android:name="android.permission.INTERNET" /><uses-permission android:name="android.permission.WAKE_LOCK" /><uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /><permission android:name="${applicationId}.permission.C2D_MESSAGE"android:protectionLevel="signature" /><uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" /><application><receiverandroid:name="com.google.firebase.iid.FirebaseInstanceIdReceiver"android:exported="true"android:permission="com.google.android.c2dm.permission.SEND" ><intent-filter><action android:name="com.google.android.c2dm.intent.RECEIVE" /><action android:name="com.google.android.c2dm.intent.REGISTRATION" /><category android:name="${applicationId}" /></intent-filter></receiver><!-- Internal (not exported) receiver used by the app to start its own exported serviceswithout risk of being spoofed. --><receiverandroid:name="com.google.firebase.iid.FirebaseInstanceIdInternalReceiver"android:exported="false" /><!-- FirebaseInstanceIdService performs security checks at runtime,no need for explicit permissions despite exported="true" --><serviceandroid:name="com.google.firebase.iid.FirebaseInstanceIdService"android:exported="true"><intent-filter android:priority="-500"><action android:name="com.google.firebase.INSTANCE_ID_EVENT" /></intent-filter></service></application></manifest>