initial checkin of stacked thumbnail bookmarks widget
bug #2930549
uses a StackView to let the user flip through the browser
bookmark thumbnails
Change-Id: I3665e98e5fd4c14ede8f28380ec6c85e7cc032f2
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3a0cee5..f50c9f0 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -215,6 +215,21 @@
<service android:name=".widget.BookmarkWidgetService" /-->
+ <receiver
+ android:name=".widget.BookmarkStackWidgetProvider"
+ android:label="@string/bookmarks">
+ <intent-filter>
+ <action
+ android:name="android.appwidget.action.APPWIDGET_UPDATE" />
+ </intent-filter>
+ <meta-data
+ android:name="android.appwidget.provider"
+ android:resource="@xml/bookmarkstackwidget" />
+ </receiver>
+ <service
+ android:name=".widget.BookmarkStackWidgetService"
+ android:exported="true" />
+
<!-- Makes .BrowserActivity the search target for any activity in Browser -->
<meta-data android:name="android.app.default_searchable" android:value=".BrowserActivity" />