2013-01-13 18:32:20 +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="com.example.projectapp"
|
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0" >
|
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="10"
|
|
|
|
android:targetSdkVersion="16" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
2013-02-04 11:23:14 +00:00
|
|
|
android:name="com.example.projectapp.ProjectExampleMainActivity"
|
2013-01-13 18:32:20 +00:00
|
|
|
android:label="@string/app_name" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<service
|
|
|
|
android:name="com.example.projectapp.BoincInteractionService"
|
|
|
|
android:enabled="true" >
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|