• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3      android:versionCode="1"
4      android:versionName="1.0" package="android.bordeaux">
5    <uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14" />
6    <uses-permission android:name="android.permission.INTERNET" />
7    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
8    <application android:label="@string/bordeaux_app"
9                 android:debuggable="true"
10                 android:hardwareAccelerated="true">
11<!-- BEGIN_INCLUDE(remote_service_declaration) -->
12        <service android:name=".services.BordeauxService"
13                android:icon="@drawable/ic_bordeaux"
14                android:process=":remote" >
15            <intent-filter>
16                <action android:name="android.bordeaux.services.IBordeauxService" />
17                <!-- This is an action code you can use to select the service
18                     without explicitly supplying the implementation class. -->
19                <action android:name="android.bordeaux.services.BORDEAUX_SERVICE" />
20            </intent-filter>
21        </service>
22    </application>
23</manifest>
24