blob: 0fc80f33efb40f73158f5ca00c9bcb0d52c779bb [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:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name="com.sample.service.serviceClass" >
<intent-filter >
<action android:name="com.sample.service.serviceClass" >
</action>
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:name="com.sample.service.mainClass" >
<intent-filter >
<action android:name="com.sample.service.mainClass" >
</action>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>