Advertisement
the-technoholik

AndroidManifest Service

Nov 15th, 2014
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.47 KB | None | 0 0
  1. <application
  2.           android:label="@string/app_name"
  3.           android:icon="@drawable/ic_launcher"
  4.           android:name=".MyApplication"
  5.           android:allowBackup="false">
  6.    
  7.         <!-- activities, etc. -->
  8.  
  9.         <service android:name=".AndroidWearMessageListenerService">
  10.             <intent-filter>
  11.                 <action android:name="com.google.android.gms.wearable.BIND_LISTENER"/>
  12.             </intent-filter>
  13.         </service>
  14.  </application>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement