blob: b1ce3e36c1e3363dd794f5bd27a216473feca650 [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" >
<receiver android:name=".DockReceiver" >
<intent-filter>
<action android:name="android.intent.action.DOCK_EVENT" />
<action android:name="android.app.action.ENTER_CAR_MODE" />
</intent-filter>
</receiver>
<receiver
android:name="com.foo.BarReceiver"
android:enabled="false" >
<intent-filter>
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<receiver
android:name=".AppWidget"
android:exported="true"
android:label="@string/label" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/config" />
</receiver>
</application>
</manifest>