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-11-25 20:34:40 +00:00
|
|
|
android:versionCode="4"
|
|
|
|
android:versionName="0.1.3">
|
2011-11-26 06:31:14 +00:00
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
2011-11-26 07:16:18 +00:00
|
|
|
<!-- <supports-screens android:smallScreens="false" android:normalScreens="false" /> -->
|
2011-09-07 05:56:46 +00:00
|
|
|
|
2011-09-08 10:23:44 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2011-09-07 05:56:46 +00:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
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-09-07 05:56:46 +00:00
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|