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"
|
2011-12-06 18:16:54 +00:00
|
|
|
android:versionCode="35"
|
|
|
|
android:versionName="0.3.2" >
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2011-12-03 14:22:06 +00:00
|
|
|
<uses-sdk android:minSdkVersion="4" />
|
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
|
|
|
|
android:hardwareAccelerated="true"
|
|
|
|
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
|
|
|
|
2011-12-06 16:07:14 +00:00
|
|
|
<service android:enabled="true" android:name=".OfflineDownloadService" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
|
|
|
|
android:name="com.google.ads.AdActivity" />
|
2011-09-07 05:56:46 +00:00
|
|
|
</application>
|
2011-12-06 16:07:14 +00:00
|
|
|
|
2011-09-07 05:56:46 +00:00
|
|
|
</manifest>
|