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"
|
|
|
|
package="org.fox.ttrss"
|
2011-12-04 08:02:38 +00:00
|
|
|
android:versionCode="31"
|
|
|
|
android:versionName="0.1.30">
|
2011-12-03 14:22:06 +00:00
|
|
|
<uses-sdk android:minSdkVersion="4" />
|
2011-09-07 05:56:46 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-11-28 13:00:36 +00:00
|
|
|
<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-04 07:50:49 +00:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name" android:hardwareAccelerated="true">
|
2011-09-08 10:23:44 +00:00
|
|
|
<activity android:name=".LoginActivity"
|
2011-09-07 05:56:46 +00:00
|
|
|
android:label="@string/app_name">
|
2011-09-08 16:05:00 +00:00
|
|
|
</activity>
|
|
|
|
<activity android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name">
|
2011-09-07 05:56:46 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2011-09-08 16:05:00 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
</activity>
|
|
|
|
<activity android:name=".PreferencesActivity"
|
|
|
|
android:label="@string/preferences">
|
|
|
|
</activity>
|
2011-11-27 15:17:38 +00:00
|
|
|
|
|
|
|
<activity android:name="com.google.ads.AdActivity"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
|
2011-09-07 05:56:46 +00:00
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|