2010-10-19 23:24:04 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-01-30 22:19:49 +00:00
|
|
|
package="org.fdroid.fdroid" android:versionCode="11"
|
|
|
|
android:versionName="0.20" android:installLocation="auto">
|
2011-01-30 22:07:43 +00:00
|
|
|
<uses-sdk android:minSdkVersion="3" />
|
2010-11-08 23:49:22 +00:00
|
|
|
<application android:name="FDroidApp" android:label="@string/app_name"
|
|
|
|
android:icon="@drawable/icon">
|
2010-11-07 10:34:50 +00:00
|
|
|
|
2011-01-30 17:00:42 +00:00
|
|
|
<activity android:name="FDroid" android:configChanges="keyboardHidden|orientation">
|
2010-10-19 23:24:04 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2011-01-16 23:06:18 +00:00
|
|
|
<meta-data android:name="android.app.default_searchable"
|
|
|
|
android:value=".SearchResults" />
|
2010-10-19 23:24:04 +01:00
|
|
|
</activity>
|
|
|
|
<activity android:name="ManageRepo" />
|
|
|
|
<activity android:name="Settings" />
|
|
|
|
<activity android:name="AppDetails" />
|
2010-11-07 23:06:46 +00:00
|
|
|
<activity android:name="Preferences" />
|
2011-01-16 23:06:18 +00:00
|
|
|
<activity android:name="SearchResults" android:launchMode="singleTop">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable" />
|
|
|
|
</activity>
|
2010-11-08 08:47:05 +00:00
|
|
|
|
|
|
|
<receiver android:name="StartupReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<category android:name="android.intent.category.HOME" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
<service android:name="UpdateService" />
|
|
|
|
|
2010-10-19 23:24:04 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2010-11-08 23:49:22 +00:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2011-01-30 22:04:43 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2010-10-19 23:24:04 +01:00
|
|
|
|
|
|
|
</manifest>
|