Skip to content

Commit e176185

Browse files
committed
Implement new widget in release manifest
Implement new widget in release manifest
1 parent 24fca8c commit e176185

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,33 @@
159159

160160
<service android:name=".Widgets.WidgetProviderLarge$UpdateWidgetService" />
161161

162+
<receiver android:name=".Widgets.WidgetProviderSmall" >
163+
<intent-filter>
164+
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
165+
</intent-filter>
166+
<meta-data
167+
android:name="android.appwidget.provider"
168+
android:resource="@xml/smallwidgetprovider" />
169+
</receiver>
170+
171+
<activity
172+
android:name=".Widgets.SmallWidgetConfigurationActivity"
173+
android:configChanges="orientation|screenSize"
174+
android:label="Domoticz Widget Config" >
175+
<intent-filter>
176+
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
177+
</intent-filter>
178+
<intent-filter>
179+
<action android:name="android.intent.action.SEARCH" />
180+
</intent-filter>
181+
182+
<meta-data
183+
android:name="android.app.searchable"
184+
android:resource="@xml/searchable" />
185+
</activity>
186+
187+
<service android:name=".Widgets.WidgetProviderSmall$UpdateWidgetService" />
188+
162189
<activity
163190
android:name=".Widgets.SecurityWidgetConfigurationActivity"
164191
android:configChanges="orientation|screenSize"

app/version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed Jan 18 11:58:18 CET 2017
2-
VERSION_BUILD=1966
1+
#Wed Jan 18 16:31:00 CET 2017
2+
VERSION_BUILD=1968
33
VERSION_PATCH=354
44
VERSION_CODE=171

domoticzapi/version.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Wed Jan 18 11:58:18 CET 2017
2-
VERSION_BUILD=1436
1+
#Wed Jan 18 16:31:03 CET 2017
2+
VERSION_BUILD=1438
33
VERSION_PATCH=43
44
VERSION_CODE=43

0 commit comments

Comments
 (0)