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"
|
2012-09-21 08:13:42 +00:00
|
|
|
android:versionCode="105"
|
|
|
|
android:versionName="0.8.4" >
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2012-09-09 13:35:11 +00:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
|
|
|
android:targetSdkVersion="11" />
|
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" />
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-12-06 16:07:14 +00:00
|
|
|
<application
|
2012-09-17 19:20:59 +00:00
|
|
|
android:name=".GlobalState"
|
2011-12-16 17:57:21 +00:00
|
|
|
android:allowBackup="true"
|
2012-06-19 12:47:25 +00:00
|
|
|
android:backupAgent=".util.PrefsBackupAgent"
|
2011-12-06 16:07:14 +00:00
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
<activity
|
2012-09-16 09:25:28 +00:00
|
|
|
android:name=".OnlineActivity"
|
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>
|
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>
|
2011-09-07 05:56:46 +00:00
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
<activity
|
|
|
|
android:name=".FeedsActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".HeadlinesActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
|
|
|
|
2012-09-18 14:36:11 +00:00
|
|
|
<activity
|
|
|
|
android:name=".CommonActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
|
|
|
|
2012-09-16 09:25:28 +00:00
|
|
|
<activity
|
|
|
|
android:name=".ArticleActivity"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
</activity>
|
2012-09-17 12:28:32 +00:00
|
|
|
|
|
|
|
<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>
|
2012-09-16 09:25:28 +00:00
|
|
|
|
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
|
2012-09-09 13:35:11 +00:00
|
|
|
android:name=".util.ImageCacheService"
|
|
|
|
android:enabled="true" />
|
|
|
|
|
2012-01-25 06:33:04 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.google.android.backup.api_key"
|
|
|
|
android:value="AEdPqrEAAAAIwG6zsGB4qo6ZhjfwIJpm9WI7AqmWaoRXm6ZJnA" />
|
2011-09-07 05:56:46 +00:00
|
|
|
</application>
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2012-01-25 06:33:04 +00:00
|
|
|
</manifest>
|