2013-01-10 19:10:03 +00:00
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is part of BOINC.
http://boinc.berkeley.edu
Copyright (C) 2012 University of California
BOINC is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.
BOINC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with BOINC. If not, see <http: / / w w w . g n u . o r g / l i c e n s e s /> .
-->
<manifest xmlns:android= "http://schemas.android.com/apk/res/android"
package="edu.berkeley.boinc"
2013-07-11 19:31:05 +00:00
android:versionCode="21"
android:versionName="7.2.4"
2013-03-19 15:26:47 +00:00
android:installLocation="internalOnly" > <!-- installation on SD card would break boot receiver -->
2013-05-30 16:02:37 +00:00
<!-- Add Google Play store metadata informing the store we can run on tablets and other large screen devices -->
<supports-screens
2013-06-02 23:58:58 +00:00
android:anyDensity="true"
2013-05-30 16:02:37 +00:00
android:smallScreens="true"
android:normalScreens="true"
2013-06-02 23:58:58 +00:00
android:largeScreens="true"
android:xlargeScreens="true" />
2013-05-30 16:02:37 +00:00
2013-07-04 08:53:13 +00:00
<!-- CAUTION: increasing targetSDK to >9 removes menu button on new devices -->
2013-06-03 18:22:29 +00:00
<uses-sdk
android:minSdkVersion="9"
2013-11-25 14:33:07 +00:00
android:targetSdkVersion="19" />
2013-06-03 00:03:25 +00:00
<!-- Required Permissions -->
2013-01-10 19:10:03 +00:00
<uses-permission android:name= "android.permission.INTERNET" />
<uses-permission android:name= "android.permission.RECEIVE_BOOT_COMPLETED" />
2013-04-06 10:55:00 +00:00
<uses-permission android:name= "android.permission.WAKE_LOCK" />
2013-04-18 13:46:18 +00:00
<uses-permission android:name= "android.permission.ACCESS_NETWORK_STATE" />
2013-06-09 10:54:39 +00:00
<uses-permission android:name= "android.permission.READ_LOGS" />
2013-07-04 10:12:02 +00:00
<uses-permission android:name= "android.permission.RESTART_PACKAGES" />
2013-01-10 19:10:03 +00:00
<application
android:icon="@drawable/boinc"
2013-01-20 12:39:09 +00:00
android:label="@string/app_name"
2013-11-25 14:33:07 +00:00
android:theme="@style/Theme.Styled"
2013-06-20 21:35:34 +00:00
android:allowBackup="true"
2013-06-24 09:55:58 +00:00
android:debuggable="true"> <!-- android:largeHeap="true" , possible api level > 10. grants application larger dalvik vm heap. better performance when showing many slideshow pictures. -->
2013-01-20 12:39:09 +00:00
2013-01-10 19:10:03 +00:00
<activity
2013-02-04 11:19:38 +00:00
android:name="edu.berkeley.boinc.BOINCActivity"
2013-11-21 14:22:26 +00:00
android:label="@string/app_name"
android:launchMode="singleTop">
2013-01-10 19:10:03 +00:00
<intent-filter >
<action android:name= "android.intent.action.MAIN" />
<category android:name= "android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
2013-11-25 14:33:07 +00:00
<activity android:name= ".AttachProjectListActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".BOINCActivity" />
</activity>
<activity android:name= ".AttachProjectAcctMgrActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".AttachProjectListActivity" />
</activity>
2013-06-12 13:15:48 +00:00
<activity android:name= ".AttachProjectLoginActivity"
2013-11-25 14:33:07 +00:00
android:configChanges="orientation">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".AttachProjectListActivity" />
</activity>
<activity android:name= ".AttachProjectRegistrationActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".AttachProjectListActivity" />
</activity>
2013-06-12 13:15:48 +00:00
<activity android:name= ".AttachProjectWorkingActivity"
android:configChanges="orientation"/>
2013-11-25 14:33:07 +00:00
<activity android:name= ".StatusFragment" />
<activity android:name= ".TasksFragment" />
<activity android:name= ".NoticesFragment" />
<activity android:name= ".PrefsActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".BOINCActivity" />
</activity>
<activity android:name= ".ProjectsFragment" />
<activity android:name= "edu.berkeley.boinc.EventLogActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="edu.berkeley.boinc.BOINCActivity" />
</activity>
2013-02-18 22:29:00 +00:00
<service android:name= ".client.Monitor" > </service>
2013-01-10 19:10:03 +00:00
<receiver android:name= ".receiver.BootReceiver" >
<intent-filter >
<action android:name= "android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
2013-07-04 10:12:02 +00:00
<receiver android:name= ".receiver.PackageReplacedReceiver" >
<intent-filter >
<action android:name= "android.intent.action.PACKAGE_REPLACED" />
<data android:scheme= "package" android:path= "edu.berkeley.boinc" />
</intent-filter>
</receiver>
2013-06-20 21:35:34 +00:00
2013-01-10 19:10:03 +00:00
</application>
</manifest>