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-02-10 18:49:34 +00:00
android:versionCode="54"
android:versionName="7.3.1" > <!-- 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"
2013-11-21 14:22:26 +00:00
android:label="@string/app_name"
2014-01-18 18:37:40 +00:00
android:theme="@android:style/Theme.NoTitleBar"
android:noHistory="true">
2013-01-10 19:10:03 +00:00
<intent-filter >
<action android:name= "android.intent.action.MAIN" />
2014-01-18 18:37:40 +00:00
2013-01-10 19:10:03 +00:00
<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-01-18 18:37:40 +00:00
<activity android:name= "edu.berkeley.boinc.AttachProjectListActivity" >
<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
<activity android:name= "edu.berkeley.boinc.AttachProjectAcctMgrActivity" >
<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
android:name="edu.berkeley.boinc.AttachProjectLoginActivity"
android:configChanges="orientation" >
<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 android:name= "edu.berkeley.boinc.AttachProjectRegistrationActivity" >
<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
android:name="edu.berkeley.boinc.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
<service android:name= "edu.berkeley.boinc.client.Monitor" >
</service>
<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-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" />
<data
android:path="edu.berkeley.boinc"
android:scheme="package" />
2013-07-04 10:12:02 +00:00
</intent-filter>
</receiver>
2013-01-10 19:10:03 +00:00
</application>
</manifest>