blob: 5e5ec3f2c6e7c6aca4e528b4e1dbf6b14d4f485f [file] [log] [blame]
Wei Hua6b4eebc2012-03-09 10:24:16 -08001<?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" />
Ruei-sung Linf0f78442012-08-13 19:04:29 -07007 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
Wei Hua6b4eebc2012-03-09 10:24:16 -08008 <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>