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"
|
2010-10-25 23:10:46 +01:00
|
|
|
package="org.fdroid.fdroid" android:versionCode="3"
|
2010-10-26 22:38:12 +01:00
|
|
|
android:versionName="0.12" android:installLocation="auto">
|
|
|
|
<application android:label="@string/app_name" android:icon="@drawable/icon">
|
2010-10-20 22:48:21 +01:00
|
|
|
<activity android:name="FDroid">
|
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>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="ManageRepo" />
|
|
|
|
<activity android:name="Settings" />
|
|
|
|
<activity android:name="AppDetails" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
|
|
|
</manifest>
|