Home | History | Annotate | Download | only in service
      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     <application android:label="@string/bordeaux_app"
      8                  android:debuggable="true"
      9                  android:hardwareAccelerated="true">
     10 <!-- BEGIN_INCLUDE(remote_service_declaration) -->
     11         <service android:name=".services.BordeauxService"
     12                 android:icon="@drawable/ic_bordeaux"
     13                 android:process=":remote" >
     14             <intent-filter>
     15                 <action android:name="android.bordeaux.services.IBordeauxService" />
     16                 <!-- This is an action code you can use to select the service
     17                      without explicitly supplying the implementation class. -->
     18                 <action android:name="android.bordeaux.services.BORDEAUX_SERVICE" />
     19             </intent-filter>
     20         </service>
     21     </application>
     22 </manifest>
     23