Advertisement
Ankhwatcher

Mobile Manifest

Jul 21st, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.46 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-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
  6.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  7.     <uses-permission android:name="android.permission.INTERNET" />
  8.  
  9.     <application
  10.        android:allowBackup="true"
  11.        android:icon="@drawable/ic_launcher"
  12.        android:label="@string/app_name"
  13.        android:theme="@style/AppTheme">
  14.         <activity
  15.            android:name=".ConfigurationActivity"
  16.            android:label="@string/app_name">
  17.             <intent-filter>
  18.                 <action android:name="android.intent.action.MAIN" />
  19.  
  20.                 <category android:name="android.intent.category.LAUNCHER" />
  21.             </intent-filter>
  22.         </activity>
  23.  
  24.         <service android:name=".services.UpdateRequestListenerService">
  25.             <intent-filter>
  26.                 <action android:name="com.google.android.gms.wearable.BIND_LISTENER" />
  27.             </intent-filter>
  28.         </service>
  29.  
  30.         <meta-data
  31.            android:name="com.google.android.gms.version"
  32.            android:value="@integer/google_play_services_version" />
  33.  
  34.         <service
  35.            android:name=".services.GetNearestStationService"
  36.            android:enabled="true"
  37.            android:exported="true" />
  38.     </application>
  39.  
  40.  
  41. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement