2011-09-07 05:56:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-12-06 16:07:14 +00:00
|
|
|
package="org.fox.ttrss"
|
2015-07-06 18:29:25 +00:00
|
|
|
android:versionCode="355"
|
|
|
|
android:versionName="1.128" >
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2012-09-09 13:35:11 +00:00
|
|
|
<uses-sdk
|
2015-02-09 20:05:44 +00:00
|
|
|
android:minSdkVersion="15"
|
2014-10-30 10:43:01 +00:00
|
|
|
android:targetSdkVersion="21" />
|
2011-09-07 05:56:46 +00:00
|
|
|
|
2011-12-06 16:07:14 +00:00
|
|
|
<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" />
|
2013-10-17 06:37:32 +00:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-12-06 16:07:14 +00:00
|
|
|
<application
|
2015-06-10 16:40:08 +00:00
|
|
|
android:name=".Application"
|
2011-12-16 17:57:21 +00:00
|
|
|
android:allowBackup="true"
|
2014-10-29 13:23:07 +00:00
|
|
|
android:backupAgent=".util.PrefsBackupAgent"
|
2011-12-06 16:07:14 +00:00
|
|
|
android:hardwareAccelerated="true"
|
2015-02-09 13:51:12 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2011-12-06 16:07:14 +00:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<activity
|
2015-06-05 09:23:35 +00:00
|
|
|
android:theme="@android:style/Theme.NoDisplay"
|
2015-06-05 08:25:23 +00:00
|
|
|
android:name=".LaunchActivity"
|
2012-09-09 13:35:11 +00:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<intent-filter>
|
2011-09-07 05:56:46 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2011-09-07 05:56:46 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2011-09-08 10:23:44 +00:00
|
|
|
</activity>
|
2015-06-05 08:25:23 +00:00
|
|
|
<activity
|
|
|
|
android:name=".OnlineActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
2011-12-06 16:07:14 +00:00
|
|
|
<activity
|
2012-09-09 13:35:11 +00:00
|
|
|
android:name=".PreferencesActivity"
|
|
|
|
android:label="@string/preferences" >
|
2011-09-08 10:23:44 +00:00
|
|
|
</activity>
|
2012-09-16 09:25:28 +00:00
|
|
|
<activity
|
2015-06-10 16:40:08 +00:00
|
|
|
android:name=".MasterActivity"
|
2014-10-30 11:15:47 +00:00
|
|
|
android:label="@string/app_name">
|
2013-10-17 07:00:07 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
</intent-filter>
|
2012-09-16 09:25:28 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
2015-06-10 16:40:08 +00:00
|
|
|
android:name=".DetailActivity"
|
2014-11-25 10:18:14 +00:00
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
2014-10-30 11:15:47 +00:00
|
|
|
android:label="@string/app_name">
|
2013-10-17 06:37:32 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
</intent-filter>
|
2012-09-16 09:25:28 +00:00
|
|
|
</activity>
|
2012-09-18 14:36:11 +00:00
|
|
|
<activity
|
|
|
|
android:name=".CommonActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
2013-10-17 12:33:30 +00:00
|
|
|
<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>
|
2012-09-17 12:28:32 +00:00
|
|
|
<activity
|
|
|
|
android:name=".offline.OfflineActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
|
|
|
<activity
|
2015-06-10 16:40:08 +00:00
|
|
|
android:name=".offline.OfflineMasterActivity"
|
2014-10-30 11:15:47 +00:00
|
|
|
android:label="@string/app_name">
|
2012-09-17 12:28:32 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
2015-06-10 16:40:08 +00:00
|
|
|
android:name=".offline.OfflineDetailActivity"
|
2014-10-30 11:15:47 +00:00
|
|
|
android:label="@string/app_name">
|
2012-09-17 12:28:32 +00:00
|
|
|
</activity>
|
2013-03-24 15:43:03 +00:00
|
|
|
<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" >
|
2013-11-27 14:43:53 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
2013-03-24 15:43:03 +00:00
|
|
|
<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>
|
|
|
|
|
2012-01-25 06:33:04 +00:00
|
|
|
<service
|
2012-09-09 13:35:11 +00:00
|
|
|
android:name=".offline.OfflineDownloadService"
|
|
|
|
android:enabled="true" />
|
2012-01-25 06:33:04 +00:00
|
|
|
<service
|
2012-09-09 13:35:11 +00:00
|
|
|
android:name=".offline.OfflineUploadService"
|
|
|
|
android:enabled="true" />
|
2012-01-25 06:33:04 +00:00
|
|
|
<service
|
2014-10-29 13:23:07 +00:00
|
|
|
android:name=".util.ImageCacheService"
|
2012-09-09 13:35:11 +00:00
|
|
|
android:enabled="true" />
|
|
|
|
|
2012-01-25 06:33:04 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.backup.api_key"
|
|
|
|
android:value="AEdPqrEAAAAIwG6zsGB4qo6ZhjfwIJpm9WI7AqmWaoRXm6ZJnA" />
|
2013-05-21 12:26:47 +00:00
|
|
|
|
2013-10-17 12:33:30 +00:00
|
|
|
<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>
|
2013-05-21 12:26:47 +00:00
|
|
|
<receiver android:name=".widget.SmallWidgetProvider" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
<action android:name="org.fox.ttrss.WIDGET_FORCE_UPDATE" />
|
2015-02-13 11:09:26 +00:00
|
|
|
<action android:name="org.fox.ttrss.WIDGET_UPDATE_RESULT" />
|
2013-05-21 12:26:47 +00:00
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/widget_small" />
|
|
|
|
</receiver>
|
2013-10-17 12:33:30 +00:00
|
|
|
|
2013-05-21 12:26:47 +00:00
|
|
|
<service
|
|
|
|
android:name=".widget.WidgetUpdateService"
|
|
|
|
android:enabled="true" />
|
2013-10-17 12:33:30 +00:00
|
|
|
<service
|
|
|
|
android:name=".DashClock"
|
2013-05-22 09:14:02 +00:00
|
|
|
android:icon="@drawable/dashclock"
|
2013-05-21 13:59:43 +00:00
|
|
|
android:label="@string/app_name"
|
2013-10-17 12:33:30 +00:00
|
|
|
android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA" >
|
2013-05-21 13:59:43 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.android.apps.dashclock.Extension" />
|
|
|
|
</intent-filter>
|
2013-10-17 12:33:30 +00:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="protocolVersion"
|
|
|
|
android:value="1" />
|
|
|
|
<meta-data
|
|
|
|
android:name="description"
|
2013-05-21 13:59:43 +00:00
|
|
|
android:value="@string/app_name" />
|
|
|
|
</service>
|
2014-10-29 13:23:07 +00:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ArticleImagesPagerActivity"
|
|
|
|
android:label="Article Images" >
|
|
|
|
</activity>
|
2015-02-09 16:58:11 +00:00
|
|
|
|
|
|
|
<activity android:name="org.acra.CrashReportDialog"
|
|
|
|
android:theme="@style/DarkDialogTheme"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:finishOnTaskLaunch="true" />
|
|
|
|
|
2011-09-07 05:56:46 +00:00
|
|
|
</application>
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2014-10-21 12:58:31 +00:00
|
|
|
</manifest>
|