boinc/android/BOINC/AndroidManifest.xml

73 lines
3.0 KiB
XML

<?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"
android:versionName="7.1.2"
android:installLocation="internalOnly" > <!-- installation on SD card would break boot receiver -->
<!-- CAUTION: specifiying target sdk can change the layout! android:targetSdkVersion="15"-->
<uses-sdk android:minSdkVersion="9" />
<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"/>
<application
android:icon="@drawable/boinc"
android:label="@string/app_name"
android:theme="@style/Theme"
android:allowBackup="true" >
<activity
android:name="edu.berkeley.boinc.BOINCActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".AttachProjectListActivity"/>
<activity android:name=".AttachProjectLoginActivity"/>
<activity android:name=".AttachProjectRegistrationActivity"/>
<activity android:name=".AttachProjectWorkingActivity"/>
<activity android:name=".StatusActivity" />
<activity android:name=".TasksActivity" />
<activity android:name=".TransActivity" />
<activity android:name=".PrefsActivity" />
<activity android:name=".ProjectsActivity" />
<activity android:name=".EventLogActivity" />
<service android:name=".client.Monitor"></service>
<service android:name="edu.berkeley.boinc.client.ClientRemoteService"
android:enabled="true"
android:exported="true"/>
<receiver android:name=".receiver.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest>