2011-09-13 16:33:44 +02:00
|
|
|
<?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="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
<application android:icon="@drawable/pandorafms_logo"
|
|
|
|
android:label="Pandroid Event viewer">
|
|
|
|
<activity android:name=".PandroidEventviewerActivity"
|
|
|
|
android:label="Pandroid Event viewer"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name=".Main"></activity>
|
|
|
|
<activity android:name=".EventList"></activity>
|
2011-09-19 11:52:18 +02:00
|
|
|
<activity android:name=".Options" android:label="@string/option_title_str"></activity>
|
2011-09-22 Miguel de Dios <miguel.dedios@artica.es>
* AndroidManifest.xml: added the lines for the service and broadcastreciver.
*src/pandroid_event_viewer/pandorafms/PandroidEventviewerActivity.java,
src/pandroid_event_viewer/pandorafms/AlarmReceiver.java,
src/pandroid_event_viewer/pandorafms/Main.java,
src/pandroid_event_viewer/pandorafms/PandroidEventviewerService.java,
src/pandroid_event_viewer/pandorafms/Options.java,
src/pandroid_event_viewer/pandorafms/EventList.java: wip, added the first
version of service to scan in background the event and other fixes and
devs.
* res/values/arrays.xml, res/values/strings.xml, res/values-en/arrays.xml,
res/values-en/strings.xml, res/values-es/arrays.xml,
res/values-es/strings.xml, res/layout/options.xml: added more const.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4987 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-09-22 23:31:45 +02:00
|
|
|
|
|
|
|
<service android:name=".PandroidEventviewerService"></service>
|
|
|
|
|
|
|
|
<receiver android:process=":remote" android:name=".AlarmReceiver"></receiver>
|
2011-09-13 16:33:44 +02:00
|
|
|
</application>
|
|
|
|
</manifest>
|