pandorafms/extras/pandroid_event_viewer/AndroidManifest.xml

90 lines
3.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program 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; version 2
// This program 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 General Public License for more details.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="pandroid_event_viewer.pandorafms"
android:versionCode="5"
android:versionName="1.4" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:description="@string/pandroid_event_viewer_description_str"
android:icon="@drawable/pandorafms_logo"
android:label="Pandroid Event viewer"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name=".PandroidEventviewerActivity"
android:configChanges="orientation|keyboardHidden"
android:label="Pandroid Event viewer" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Main"
android:configChanges="orientation|keyboardHidden" >
</activity>
<activity
android:name=".EventList"
android:configChanges="orientation|keyboardHidden" >
</activity>
<activity
android:name=".Options"
android:configChanges="orientation|keyboardHidden"
android:label="@string/option_title_str" >
</activity>
<activity
android:name=".About"
android:configChanges="orientation|keyboardHidden"
android:label="@string/pandroid_event_viewer_str"
android:theme="@style/Pandora_dialog" >
</activity>
<activity
android:name=".PopupValidationEvent"
android:configChanges="orientation|keyboardHidden"
android:label="@string/validate_event_button_str"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name=".Info"
android:configChanges="orientation|keyboardHidden"
android:label="@string/pandroid_event_viewer_str"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity android:name=".CreateIncidentActivity" />
<service android:name=".PandroidEventviewerService" />
<receiver
android:name=".OnBootLoader"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
</application>
</manifest>