Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 79090905c1c8a8913a57e92667c4fbd6c986db50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?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>

Back to the top