You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
949 B
27 lines
949 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.google.android.leanbacklauncher.partnerwidget">
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="19"
|
|
android:targetSdkVersion="19" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<application android:label="@string/app_label">
|
|
<receiver android:name=".ClockWidgetProvider" >
|
|
<intent-filter>
|
|
<action android:name="android.net.conn.INET_CONDITION_ACTION" />
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.appwidget.provider"
|
|
android:resource="@xml/clock_widget_info" />
|
|
</receiver>
|
|
|
|
</application>
|
|
</manifest>
|