Advertisement
Ankhwatcher

Wear Manifest

Jul 21st, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.31 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="ie.appz.dartwear">
  4.  
  5.     <uses-feature android:name="android.hardware.type.watch" />
  6.  
  7.     <uses-permission android:name="android.permission.VIBRATE" />
  8.  
  9.     <application
  10.        android:allowBackup="true"
  11.        android:icon="@drawable/ic_launcher"
  12.        android:label="@string/app_name"
  13.        android:theme="@style/DartWear">
  14.         <activity
  15.            android:name=".MainActivity"
  16.            android:label="@string/app_name"/>
  17.  
  18.  
  19.         <activity
  20.            android:name=".NearestDartActivity"
  21.            android:label="@string/next_dart">
  22.  
  23.             <intent-filter>
  24.                 <action android:name="android.intent.action.MAIN" />
  25.                 <category android:name="android.intent.category.LAUNCHER" />
  26.             </intent-filter>
  27.  
  28.         </activity>
  29.  
  30.         <service android:name=".DartResponseListenerService">
  31.             <intent-filter>
  32.                 <action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
  33.             </intent-filter>
  34.         </service>
  35.  
  36.         <meta-data
  37.            android:name="com.google.android.gms.version"
  38.            android:value="@integer/google_play_services_version" />
  39.     </application>
  40.  
  41. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement