summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2014-10-29 16:23:07 +0300
committerAndrew Dolgov <[email protected]>2014-10-29 16:23:07 +0300
commitf8bc884ad315aefbf6e71932f115f8c571ff9d6d (patch)
tree16e4b79fcc7be8871af4f4b397d510283a5b4888 /org.fox.ttrss/src/main/AndroidManifest.xml
parent7fd2e713b38a951851ded7d131990d68ce5b4177 (diff)
remove X more image prompt
implement pager-based browser for article images, enabled if more than one detected add (unused) dimens for activity margins
Diffstat (limited to 'org.fox.ttrss/src/main/AndroidManifest.xml')
-rw-r--r--org.fox.ttrss/src/main/AndroidManifest.xml12
1 files changed, 7 insertions, 5 deletions
diff --git a/org.fox.ttrss/src/main/AndroidManifest.xml b/org.fox.ttrss/src/main/AndroidManifest.xml
index d8885db1..155be905 100644
--- a/org.fox.ttrss/src/main/AndroidManifest.xml
+++ b/org.fox.ttrss/src/main/AndroidManifest.xml
@@ -16,7 +16,7 @@
<application
android:name=".GlobalState"
android:allowBackup="true"
- android:backupAgent="org.fox.ttrss.util.PrefsBackupAgent"
+ android:backupAgent=".util.PrefsBackupAgent"
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:label="@string/app_name" >
@@ -92,7 +92,6 @@
android:excludeFromRecents="true"
android:label="@string/subscribe_name"
android:theme="@style/DarkDialogTheme" >
-
<intent-filter>
<action android:name="android.intent.action.SEND" />
@@ -100,7 +99,6 @@
<data android:mimeType="text/plain" />
</intent-filter>
-
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@@ -207,7 +205,7 @@
android:name=".offline.OfflineUploadService"
android:enabled="true" />
<service
- android:name="org.fox.ttrss.util.ImageCacheService"
+ android:name=".util.ImageCacheService"
android:enabled="true" />
<meta-data
@@ -220,7 +218,6 @@
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
</intent-filter>
</receiver>
-
<receiver android:name=".widget.SmallWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
@@ -251,6 +248,11 @@
android:name="description"
android:value="@string/app_name" />
</service>
+
+ <activity
+ android:name=".ArticleImagesPagerActivity"
+ android:label="Article Images" >
+ </activity>
</application>
</manifest>