blob: f9522258d2ac7aedfe46f52338706c50075acaec [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="foo.bar2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="14" />
<application
android:icon="@drawable/ic_launcher"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED"
android:label="@string/app_name" >
<service
android:label="@string/app_name"
android:name="com.sample.service.serviceClass"
android:process=":remote" >
<intent-filter >
<action android:name="com.sample.service.serviceClass" >
</action>
</intent-filter>
</service>
</application>
</manifest>