summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-24 19:43:03 +0400
committerAndrew Dolgov <[email protected]>2013-03-24 19:43:03 +0400
commitad12b2b945d23af48d3930c1602971dc8e4924d8 (patch)
tree3c35724d3f9ce0faf9989a12e6ae021f9bef899c /AndroidManifest.xml
parentc6493ebb707216fcc5241528298b94302c49d373 (diff)
integrate share app stuff into tt-rss app
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml129
1 files changed, 119 insertions, 10 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 4bad3740..b45a2850 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss"
- android:versionCode="146"
- android:versionName="1.23" >
+ android:versionCode="147"
+ android:versionName="1.3" >
<uses-sdk
android:minSdkVersion="8"
@@ -32,42 +32,151 @@
android:name=".PreferencesActivity"
android:label="@string/preferences" >
</activity>
-
<activity
android:name=".FeedsActivity"
android:label="@string/app_name" >
</activity>
-
<activity
android:name=".HeadlinesActivity"
android:label="@string/app_name" >
</activity>
-
<activity
android:name=".CommonActivity"
android:label="@string/app_name" >
</activity>
-
<activity
android:name=".ArticleActivity"
android:label="@string/app_name" >
</activity>
-
<activity
android:name=".offline.OfflineActivity"
android:label="@string/app_name" >
</activity>
-
<activity
android:name=".offline.OfflineFeedsActivity"
android:label="@string/app_name" >
</activity>
-
<activity
android:name=".offline.OfflineHeadlinesActivity"
android:label="@string/app_name" >
</activity>
-
+ <activity
+ android:name=".share.ShareActivity"
+ android:excludeFromRecents="true"
+ android:label="@string/app_name"
+ android:theme="@style/DarkDialogTheme" >
+ <intent-filter>
+ <action android:name="android.intent.action.SEND" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data android:mimeType="text/plain" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".share.SubscribeActivity"
+ android:excludeFromRecents="true"
+ android:label="@string/subscribe_name"
+ android:theme="@style/DarkDialogTheme" >
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.BROWSABLE" />
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data android:scheme="itpc" />
+ <data android:scheme="pcast" />
+ <data android:scheme="feed" />
+ <data android:scheme="rss" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:host="*"
+ android:pathPattern=".*xml"
+ android:scheme="http" />
+ <data
+ android:host="*"
+ android:pathPattern=".*rss"
+ android:scheme="http" />
+ <data
+ android:host="*"
+ android:pathPattern=".*feed.*"
+ android:scheme="http" />
+ <data
+ android:host="*"
+ android:pathPattern=".*podcast.*"
+ android:scheme="http" />
+ <data
+ android:host="*"
+ android:pathPattern=".*Podcast.*"
+ android:scheme="http" />
+ <data
+ android:host="*"
+ android:pathPattern=".*rss.*"
+ android:scheme="http" />
+ <data
+ android:host="*"
+ android:pathPattern=".*RSS.*"
+ android:scheme="http" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data
+ android:mimeType="text/xml"
+ android:scheme="http" />
+ <data
+ android:mimeType="application/rss+xml"
+ android:scheme="http" />
+ <data
+ android:mimeType="application/atom+xml"
+ android:scheme="http" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data android:scheme="http" />
+ <data android:host="*" />
+ <data android:pathPattern=".*\\.xml" />
+ <data android:pathPattern=".*\\.rss" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data android:scheme="http" />
+ <data android:host="feeds.feedburner.com" />
+ <data android:host="feedproxy.google.com" />
+ <data android:host="feeds2.feedburner.com" />
+ <data android:host="feedsproxy.google.com" />
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.VIEW" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.BROWSABLE" />
+
+ <data android:scheme="http" />
+ <data android:mimeType="text/xml" />
+ <data android:mimeType="application/rss+xml" />
+ <data android:mimeType="application/atom+xml" />
+ <data android:mimeType="application/xml" />
+ </intent-filter>
+ </activity>
+
<service
android:name=".offline.OfflineDownloadService"
android:enabled="true" />