Advertisement
androlizer

Untitled

Sep 28th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.84 KB | None | 0 0
  1.  <uses-permission android:name="com.sfworx.avantha.permission.C2D_MESSAGE" />
  2.     <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
  3.  
  4.     <permission
  5.         android:name="com.sfworx.avantha.permission.C2D_MESSAGE"
  6.         android:protectionLevel="signature" />
  7.  
  8. <receiver
  9.             android:name=".GcmBroadcastReceiver"
  10.             android:permission="com.google.android.c2dm.permission.SEND" >
  11.             <intent-filter>
  12.  
  13.                 <!-- Receives the actual messages. -->
  14.                 <action android:name="com.google.android.c2dm.intent.RECEIVE" />
  15.                 <!-- Receives the registration id. -->
  16.                 <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
  17.  
  18.                 <category android:name="com.sfworx.avantha" />
  19.             </intent-filter>
  20.         </receiver>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement