2011-01-26 20:15:48 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="pandroid.agent"
|
2011-10-28 12:12:23 +02:00
|
|
|
android:versionCode="2"
|
|
|
|
android:versionName="1.5">
|
2011-01-26 20:15:48 +01:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
2011-10-12 20:58:48 +02:00
|
|
|
<activity
|
|
|
|
android:name=".PandroidAgent"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboardHidden|orientation"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar"
|
|
|
|
>
|
2011-01-26 20:15:48 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2011-10-12 20:58:48 +02:00
|
|
|
|
|
|
|
<activity android:name=".Status" />
|
|
|
|
<activity android:name=".Setup" />
|
|
|
|
|
2011-02-01 18:36:54 +01:00
|
|
|
<service android:enabled="true" android:name="pandroid.agent.PandroidAgentListener" />
|
|
|
|
<receiver android:name="pandroid.agent.EventReceiver" />
|
2011-10-20 Miguel de Dios <miguel.dedios@artica.es>
* AndroidManifest.xml: added new activies and permission of batery.
* src/pandroid/agent/PandroidAgent.java, src/pandroid/agent/Setup.java,
src/pandroid/agent/Status.java,
src/pandroid/agent/PandroidAgentListener.java,
src/pandroid/agent/EventReceiver.java, src/pandroid/agent/Help.java,
src/pandroid/agent/About.java: wip.
* res/values/strings.xml, res/values-en/strings.xml,
res/values-es/strings.xml: added strings and translations into spanish.
* res/menu/options_menu.xml: added a menu file.
* res/drawable-ldpi/help.png, res/drawable-ldpi/about.png,
res/drawable-ldpi/pandorafms_logo.png: added image files.
* res/layout/setup.xml, res/layout/status.xml, res/layout/help.xml,
res/layout/about.xml: wip and added the need layout for new activies.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5072 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-10-20 15:01:42 +02:00
|
|
|
<activity
|
|
|
|
android:name=".About"
|
|
|
|
android:label="@string/pandroid_agent_str"
|
|
|
|
android:theme="@android:style/Theme.Dialog"
|
|
|
|
/>
|
|
|
|
<activity
|
|
|
|
android:name=".Help"
|
|
|
|
android:label="@string/help_str"
|
|
|
|
android:theme="@android:style/Theme.Dialog"
|
|
|
|
/>
|
2011-01-26 20:15:48 +01:00
|
|
|
</application>
|
2011-02-01 18:36:54 +01:00
|
|
|
|
2011-10-12 20:58:48 +02:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-02-07 17:53:49 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2011-09-30 10:35:34 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
2011-10-12 20:58:48 +02:00
|
|
|
<uses-permission android:name="android.permission.GET_TASKS"/>
|
2011-10-20 Miguel de Dios <miguel.dedios@artica.es>
* AndroidManifest.xml: added new activies and permission of batery.
* src/pandroid/agent/PandroidAgent.java, src/pandroid/agent/Setup.java,
src/pandroid/agent/Status.java,
src/pandroid/agent/PandroidAgentListener.java,
src/pandroid/agent/EventReceiver.java, src/pandroid/agent/Help.java,
src/pandroid/agent/About.java: wip.
* res/values/strings.xml, res/values-en/strings.xml,
res/values-es/strings.xml: added strings and translations into spanish.
* res/menu/options_menu.xml: added a menu file.
* res/drawable-ldpi/help.png, res/drawable-ldpi/about.png,
res/drawable-ldpi/pandorafms_logo.png: added image files.
* res/layout/setup.xml, res/layout/status.xml, res/layout/help.xml,
res/layout/about.xml: wip and added the need layout for new activies.
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5072 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2011-10-20 15:01:42 +02:00
|
|
|
<uses-permission android:name="android.permission.BATTERY_STATS"/>
|
2011-02-07 17:53:49 +01:00
|
|
|
|
|
|
|
<uses-feature android:name="android.hardware.sensor.light" />
|
|
|
|
<uses-feature android:name="android.hardware.location" />
|
2011-02-07 18:44:13 +01:00
|
|
|
|
2011-09-30 10:35:34 +02:00
|
|
|
<uses-sdk android:minSdkVersion="8"/>
|
2011-01-26 20:15:48 +01:00
|
|
|
</manifest>
|