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-02-29 15:30:52 +00:00
|
|
|
android:versionCode="66"
|
|
|
|
android:versionName="0.5.2" >
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2011-12-09 19:28:37 +00:00
|
|
|
<uses-sdk android:minSdkVersion="7" />
|
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" />
|
2012-02-29 15:30:52 +00:00
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2011-12-06 16:07:14 +00:00
|
|
|
<application
|
2011-12-16 17:57:21 +00:00
|
|
|
android:allowBackup="true"
|
2012-01-25 06:33:04 +00:00
|
|
|
android:backupAgent="PrefsBackupAgent"
|
2011-12-06 16:07:14 +00:00
|
|
|
android:hardwareAccelerated="true"
|
2012-02-03 11:24:14 +00:00
|
|
|
uiOptions="splitActionBarWhenNarrow"
|
2011-12-06 16:07:14 +00:00
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
<activity
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:name=".LoginActivity" >
|
2011-09-08 16:05:00 +00:00
|
|
|
</activity>
|
2011-12-06 16:07:14 +00:00
|
|
|
<activity
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:name=".OfflineActivity" >
|
2011-12-05 19:19:11 +00:00
|
|
|
</activity>
|
2011-12-06 16:07:14 +00:00
|
|
|
<activity
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:name=".MainActivity" >
|
|
|
|
<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
|
|
|
|
android:label="@string/preferences"
|
|
|
|
android:name=".PreferencesActivity" >
|
2011-09-08 10:23:44 +00:00
|
|
|
</activity>
|
2011-09-07 05:56:46 +00:00
|
|
|
|
2012-01-25 06:33:04 +00:00
|
|
|
<service
|
|
|
|
android:enabled="true"
|
|
|
|
android:name=".OfflineDownloadService" />
|
|
|
|
<service
|
|
|
|
android:enabled="true"
|
|
|
|
android:name=".OfflineUploadService" />
|
|
|
|
<service
|
|
|
|
android:enabled="true"
|
|
|
|
android:name=".ImageCacheService" />
|
|
|
|
|
2012-02-29 15:30:52 +00:00
|
|
|
<service android:name="BillingService" />
|
|
|
|
|
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>
|