summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'org.fox.ttrss/src/main/AndroidManifest.xml')
-rw-r--r--org.fox.ttrss/src/main/AndroidManifest.xml256
1 files changed, 256 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/AndroidManifest.xml b/org.fox.ttrss/src/main/AndroidManifest.xml
new file mode 100644
index 00000000..684cc438
--- /dev/null
+++ b/org.fox.ttrss/src/main/AndroidManifest.xml
@@ -0,0 +1,256 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.fox.ttrss"
+ android:versionCode="239"
+ android:versionName="1.41" >
+
+ <uses-sdk
+ android:minSdkVersion="8"
+ android:targetSdkVersion="19" />
+
+ <uses-permission android:name="android.permission.INTERNET" />
+ <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
+ <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+ <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
+
+ <application
+ android:name=".GlobalState"
+ android:allowBackup="true"
+ android:backupAgent="org.fox.ttrss.util.PrefsBackupAgent"
+ android:hardwareAccelerated="true"
+ android:icon="@drawable/icon"
+ android:label="@string/app_name" >
+ <activity
+ android:name=".OnlineActivity"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".PreferencesActivity"
+ android:label="@string/preferences" >
+ </activity>
+ <activity
+ android:name=".FeedsActivity"
+ android:label="@string/app_name"
+ android:uiOptions="splitActionBarWhenNarrow" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".HeadlinesActivity"
+ android:label="@string/app_name"
+ android:uiOptions="splitActionBarWhenNarrow" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".CommonActivity"
+ android:label="@string/app_name" >
+ </activity>
+ <activity
+ android:name=".tasker.TaskerSettingsActivity"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
+ </intent-filter>
+ </activity>
+ <activity
+ android:name=".offline.OfflineActivity"
+ android:label="@string/app_name" >
+ </activity>
+ <activity
+ android:name=".offline.OfflineFeedsActivity"
+ android:label="@string/app_name"
+ android:uiOptions="splitActionBarWhenNarrow" >
+ </activity>
+ <activity
+ android:name=".offline.OfflineHeadlinesActivity"
+ android:label="@string/app_name"
+ android:uiOptions="splitActionBarWhenNarrow" >
+ </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.SEND" />
+
+ <category android:name="android.intent.category.DEFAULT" />
+
+ <data android:mimeType="text/plain" />
+ </intent-filter>
+
+ <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" />
+ <service
+ android:name=".offline.OfflineUploadService"
+ android:enabled="true" />
+ <service
+ android:name="org.fox.ttrss.util.ImageCacheService"
+ android:enabled="true" />
+
+ <meta-data
+ android:name="com.google.android.backup.api_key"
+ android:value="AEdPqrEAAAAIwG6zsGB4qo6ZhjfwIJpm9WI7AqmWaoRXm6ZJnA" />
+
+ <receiver android:name=".tasker.TaskerReceiver" >
+ <intent-filter>
+ <action android:name="com.twofortyfouram.locale.intent.action.QUERY_CONDITION" />
+ <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" />
+ <action android:name="org.fox.ttrss.WIDGET_FORCE_UPDATE" />
+ </intent-filter>
+
+ <meta-data
+ android:name="android.appwidget.provider"
+ android:resource="@xml/widget_small" />
+ </receiver>
+
+ <service
+ android:name=".widget.WidgetUpdateService"
+ android:enabled="true" />
+ <service
+ android:name=".DashClock"
+ android:icon="@drawable/dashclock"
+ android:label="@string/app_name"
+ android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA" >
+ <intent-filter>
+ <action android:name="com.google.android.apps.dashclock.Extension" />
+ </intent-filter>
+
+ <meta-data
+ android:name="protocolVersion"
+ android:value="1" />
+ <meta-data
+ android:name="description"
+ android:value="@string/app_name" />
+ </service>
+ </application>
+
+</manifest> \ No newline at end of file