blob: 79090905c1c8a8913a57e92667c4fbd6c986db50 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (c) 2013, 2017 Orange.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
Contributors:
BAREAU Cyrille <cyrille.bareau@orange.com>,
BONNARDEL Gregory <gbonnardel.ext@orange.com>,
BOLLE Sebastien <sebastien.bolle@orange.com>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.eclipse.om2m.android.dashboard"
android:versionCode="1"
android:versionName="1.0.0-SNAPSHOT" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@drawable/home_dashboard_logo"
android:label="@string/app_name"
android:theme="@style/Theme.Custom_theme" android:logo="@drawable/home_dashboard_logo">
<activity
android:name="org.eclipse.om2m.android.dashboard.DashboardActivity"
android:icon="@drawable/home_dashboard_logo"
android:label="@string/app_name">
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="org.eclipse.om2m.android.dashboard.devices.DevicesActivity"
android:icon="@drawable/home_dashboard_logo"
android:label="@string/app_name"
android:parentActivityName="OTBDashboardActivity" >
</activity>
<activity
android:name="org.eclipse.om2m.android.dashboard.devices.DeviceDetailsActivity"
android:icon="@drawable/home_dashboard_logo"
android:label="@string/app_name"
android:parentActivityName="OTBDashboardActivity" >
</activity>
<activity
android:name="org.eclipse.om2m.android.dashboard.SettingsActivity"
android:icon="@drawable/home_dashboard_logo"
android:label="@string/app_name"
android:parentActivityName="OTBDashboardActivity" >
</activity>
<activity
android:name="org.eclipse.om2m.android.dashboard.applications.ApplicationConfigActivity"
android:icon="@drawable/home_dashboard_logo"
android:label="@string/app_name"
android:parentActivityName="OTBDashboardActivity" >
</activity>
<service android:name="com.dg.libs.rest.services.HTTPRequestExecutorService" />
</application>
</manifest>