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"
2014-01-18 18:37:40 +00:00
android:installLocation="internalOnly"
2014-03-13 13:49:40 +00:00
android:versionCode="66"
android:versionName="7.3.13" > <!-- installation on SD card would break boot receiver -->
2014-01-18 18:37:40 +00:00
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"
android:largeScreens="true"
2014-01-18 18:37:40 +00:00
android:normalScreens="true"
android:smallScreens="true"
2013-06-02 23:58:58 +00:00
android:xlargeScreens="true" />
2013-05-30 16:02:37 +00:00
2014-01-18 18:37:40 +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" />
2014-01-18 18:37:40 +00:00
2013-06-03 00:03:25 +00:00
<!-- Required Permissions -->
2014-01-18 18:37:40 +00:00
<uses-permission android:name= "android.permission.INTERNET" />
<uses-permission android:name= "android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name= "android.permission.WAKE_LOCK" />
<uses-permission android:name= "android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name= "android.permission.READ_LOGS" />
<uses-permission android:name= "android.permission.RESTART_PACKAGES" />
2013-01-10 19:10:03 +00:00
<application
2014-01-18 18:37:40 +00:00
android:allowBackup="true"
android:debuggable="true"
2013-01-10 19:10:03 +00:00
android:icon="@drawable/boinc"
2013-01-20 12:39:09 +00:00
android:label="@string/app_name"
2014-01-18 18:37:40 +00:00
android:theme="@style/Theme.Styled" > <!-- android:largeHeap="true" , possible api level > 10. grants application larger dalvik vm heap. better performance when showing many slideshow pictures. -->
2013-01-10 19:10:03 +00:00
<activity
2014-01-18 18:37:40 +00:00
android:name="edu.berkeley.boinc.SplashActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
2014-03-27 09:39:14 +00:00
android:screenOrientation="portrait"
2013-11-21 14:22:26 +00:00
android:label="@string/app_name"
2014-03-27 09:39:14 +00:00
android:theme="@style/Theme.Styled.NoActionBar"
2014-01-18 18:37:40 +00:00
android:noHistory="true">
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>
2014-01-18 18:37:40 +00:00
<activity
android:name="edu.berkeley.boinc.BOINCActivity"
android:label="@string/app_name"
2014-02-04 10:00:18 +00:00
android:launchMode="singleTop"
android:exported="true" >
2013-11-25 14:33:07 +00:00
</activity>
2014-03-27 09:39:14 +00:00
<activity android:name= "edu.berkeley.boinc.attach.AcctMgrFragment" >
2014-01-18 18:37:40 +00:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="edu.berkeley.boinc.BOINCActivity" />
2013-11-25 14:33:07 +00:00
</activity>
2014-03-27 09:39:14 +00:00
<activity
android:name="edu.berkeley.boinc.attach.SelectionListActivity"
android:theme="@style/Theme.Styled.NoActionBar"
android:screenOrientation="portrait" >
2013-11-25 14:33:07 +00:00
</activity>
2014-01-18 18:37:40 +00:00
<activity
2014-03-27 09:39:14 +00:00
android:name="edu.berkeley.boinc.attach.CredentialInputActivity"
android:theme="@style/Theme.Styled.NoActionBar"
android:screenOrientation="portrait" >
2013-11-25 14:33:07 +00:00
</activity>
2014-03-27 09:39:14 +00:00
<activity
android:name="edu.berkeley.boinc.attach.BatchProcessingActivity"
android:theme="@style/Theme.Styled.NoActionBar"
android:screenOrientation="portrait"
android:noHistory="true" >
</activity>
<activity
android:name="edu.berkeley.boinc.attach.BatchConflictListActivity"
android:theme="@style/Theme.Styled.NoActionBar"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="edu.berkeley.boinc.attach.IndividualAttachActivity"
android:theme="@style/Theme.Styled.NoActionBar"
android:screenOrientation="portrait" >
</activity>
<activity android:name= "edu.berkeley.boinc.attach.AttachProjectRegistrationActivity" >
2014-01-18 18:37:40 +00:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
2014-01-30 12:15:49 +00:00
android:value="edu.berkeley.boinc.AttachProjectListActivity" />
2013-11-25 14:33:07 +00:00
</activity>
2014-01-18 18:37:40 +00:00
<activity
2014-03-27 09:39:14 +00:00
android:name="edu.berkeley.boinc.attach.AttachProjectWorkingActivity"
2014-01-21 17:51:48 +00:00
android:configChanges="orientation"
android:noHistory="true" />
2013-11-25 14:33:07 +00:00
<activity android:name= "edu.berkeley.boinc.EventLogActivity" >
2014-01-18 18:37:40 +00:00
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="edu.berkeley.boinc.BOINCActivity" />
2013-11-25 14:33:07 +00:00
</activity>
2014-01-18 18:37:40 +00:00
2014-02-13 13:35:21 +00:00
<service android:name= "edu.berkeley.boinc.client.Monitor" android:process= ":remote" >
2014-01-18 18:37:40 +00:00
</service>
2014-03-27 09:39:14 +00:00
<service android:name= "edu.berkeley.boinc.attach.ProjectAttachService" >
</service>
2014-01-18 18:37:40 +00:00
<receiver android:name= "edu.berkeley.boinc.receiver.BootReceiver" >
2013-01-10 19:10:03 +00:00
<intent-filter >
2014-01-18 18:37:40 +00:00
<action android:name= "android.intent.action.BOOT_COMPLETED" />
2013-01-10 19:10:03 +00:00
</intent-filter>
</receiver>
2014-02-18 14:21:42 +00:00
<receiver android:name= "edu.berkeley.boinc.receiver.PowerConnectedReceiver" >
<intent-filter >
<action android:name= "android.intent.action.ACTION_POWER_CONNECTED" />
</intent-filter>
</receiver>
2014-01-18 18:37:40 +00:00
<receiver android:name= "edu.berkeley.boinc.receiver.PackageReplacedReceiver" >
2013-07-04 10:12:02 +00:00
<intent-filter >
2014-01-18 18:37:40 +00:00
<action android:name= "android.intent.action.PACKAGE_REPLACED" />
2014-02-11 15:26:33 +00:00
<data android:path= "edu.berkeley.boinc" android:scheme= "package" />
2013-07-04 10:12:02 +00:00
</intent-filter>
</receiver>
2014-02-11 15:26:33 +00:00
<activity android:name= ".ForwardDialog" android:theme= "@android:style/Theme.Dialog" >
</activity>
2013-01-10 19:10:03 +00:00
</application>
</manifest>