2012-06-11 20:46:58 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.newsblur"
|
|
|
|
android:versionCode="1"
|
2012-06-26 15:38:17 -04:00
|
|
|
android:versionName="0.0.2" >
|
2012-06-11 20:46:58 -04:00
|
|
|
|
2012-06-26 15:38:17 -04:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
|
|
|
android:targetSdkVersion="15" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2012-06-29 16:26:18 -04:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2012-06-11 20:46:58 -04:00
|
|
|
|
|
|
|
<application
|
2012-06-25 16:47:00 -04:00
|
|
|
android:icon="@drawable/logo"
|
|
|
|
android:label="@string/newsblur"
|
2012-06-26 15:38:17 -04:00
|
|
|
android:theme="@style/NewsBlurTheme" >
|
2012-06-11 20:46:58 -04:00
|
|
|
<activity
|
2012-06-25 16:47:00 -04:00
|
|
|
android:name=".activity.Login"
|
2012-07-02 23:16:39 -04:00
|
|
|
android:noHistory="true"
|
2012-06-25 16:47:00 -04:00
|
|
|
android:label="@string/newsblur" >
|
2012-06-11 20:46:58 -04:00
|
|
|
<intent-filter>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2012-06-26 15:38:17 -04:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2012-06-11 20:46:58 -04:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2012-07-04 17:24:42 -04:00
|
|
|
|
2012-06-25 16:47:00 -04:00
|
|
|
<activity
|
|
|
|
android:name=".activity.Main"
|
2012-07-06 14:50:26 -04:00
|
|
|
android:label="@string/newsblur"
|
|
|
|
android:hardwareAccelerated="false" />
|
2012-07-04 17:24:42 -04:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".activity.Profile"
|
2012-07-06 12:13:12 -04:00
|
|
|
android:label="@string/profile"
|
|
|
|
android:hardwareAccelerated="false" />
|
2012-06-29 16:26:18 -04:00
|
|
|
|
2012-06-28 23:58:58 -04:00
|
|
|
<service android:name=".service.SyncService" />
|
2012-06-29 16:26:18 -04:00
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".database.FeedProvider"
|
|
|
|
android:authorities="com.newsblur"
|
|
|
|
android:exported="true"
|
|
|
|
android:multiprocess="true" />
|
2012-06-11 20:46:58 -04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|