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://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="edu.berkeley.boinc"
|
|
|
|
|
|
|
|
android:versionCode="1"
|
2013-03-19 15:26:47 +00:00
|
|
|
android:versionName="7.1.0"
|
|
|
|
|
|
|
|
android:installLocation="internalOnly" > <!-- installation on SD card would break boot receiver -->
|
2013-01-20 12:39:09 +00:00
|
|
|
|
|
|
|
<!-- specifiying target sdk changes the layout! android:targetSdkVersion="15" -->
|
|
|
|
<uses-sdk android:minSdkVersion="9" />
|
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-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-02-12 17:24:28 +00:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:debuggable="true" >
|
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-03-26 14:05:35 +00:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="orientation">
|
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-03-26 14:05:35 +00:00
|
|
|
<activity android:name=".AttachProjectListActivity"
|
|
|
|
android:configChanges="orientation"/>
|
|
|
|
<activity android:name=".AttachProjectLoginActivity"
|
|
|
|
android:configChanges="orientation"/>
|
|
|
|
<activity android:name=".AttachProjectRegistrationActivity"
|
|
|
|
android:configChanges="orientation"/>
|
2013-02-12 17:24:28 +00:00
|
|
|
<activity android:name=".StatusActivity" />
|
2013-01-10 19:10:03 +00:00
|
|
|
<activity android:name=".TasksActivity" />
|
|
|
|
<activity android:name=".TransActivity" />
|
|
|
|
<activity android:name=".PrefsActivity" />
|
2013-01-14 18:57:10 +00:00
|
|
|
<activity android:name=".ProjectsActivity" />
|
2013-02-20 00:45:36 +00:00
|
|
|
<activity android:name=".EventLogActivity" />
|
2013-02-18 22:29:00 +00:00
|
|
|
<service android:name=".client.Monitor"></service>
|
2013-01-13 18:24:08 +00:00
|
|
|
<service android:name="edu.berkeley.boinc.client.ClientRemoteService"
|
|
|
|
android:enabled="true"
|
2013-03-28 16:24:06 +00:00
|
|
|
android:exported="true">
|
|
|
|
</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>
|
|
|
|
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|