Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
212 | ligi | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
||
3 | package="org.ligi.android" |
||
4 | android:versionCode="1" |
||
5 | android:versionName="1.0"> |
||
6 | |||
7 | <application android:label="@string/app_name"> |
||
8 | |||
9 | <uses-library android:name="com.google.android.maps"/> |
||
10 | <activity android:name=".DUBwise" |
||
11 | android:label="@string/app_name" |
||
12 | android:icon="@drawable/icon"> |
||
13 | <intent-filter> |
||
14 | <action android:name="android.intent.action.MAIN" /> |
||
15 | <category android:name="android.intent.category.LAUNCHER" /> |
||
16 | </intent-filter> |
||
17 | </activity> |
||
18 | |||
19 | |||
20 | <activity android:name=".DUBwiseMapActivity" |
||
21 | android:label="@string/app_name" |
||
22 | > |
||
23 | <intent-filter> |
||
24 | |||
25 | <action android:name="android.intent.action.MAIN" /> |
||
26 | |||
27 | </intent-filter> |
||
28 | </activity> |
||
29 | |||
30 | <activity android:name=".ConnectionActivity" |
||
31 | android:label="@string/app_name" |
||
32 | > |
||
33 | <intent-filter> |
||
34 | |||
35 | <action android:name="android.intent.action.MAIN" /> |
||
36 | |||
37 | </intent-filter> |
||
38 | </activity> |
||
39 | |||
40 | |||
41 | <activity android:name=".MotorTestActivity" |
||
42 | android:label="@string/app_name" |
||
43 | > |
||
44 | <intent-filter> |
||
45 | |||
46 | <action android:name="android.intent.action.MAIN" /> |
||
47 | |||
48 | </intent-filter> |
||
49 | </activity> |
||
50 | |||
51 | |||
52 | <activity android:name=".RCDataActivity" |
||
53 | android:label="@string/app_name" |
||
54 | > |
||
55 | <intent-filter> |
||
56 | |||
57 | <action android:name="android.intent.action.MAIN" /> |
||
58 | |||
59 | </intent-filter> |
||
60 | </activity> |
||
61 | |||
62 | |||
63 | |||
64 | <activity android:name=".FlightSettingsActivity" |
||
65 | android:label="@string/app_name" |
||
66 | > |
||
67 | <intent-filter> |
||
68 | |||
69 | <action android:name="android.intent.action.MAIN" /> |
||
70 | |||
71 | </intent-filter> |
||
72 | </activity> |
||
73 | |||
74 | |||
75 | <activity android:name=".FlightSettingsSettingSelect" |
||
76 | |||
77 | android:label="@string/app_name" |
||
78 | > |
||
79 | <intent-filter> |
||
80 | |||
81 | <action android:name="android.intent.action.MAIN" /> |
||
82 | |||
83 | </intent-filter> |
||
84 | </activity> |
||
85 | |||
86 | |||
87 | </application> |
||
88 | |||
89 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission> |
||
90 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission> |
||
91 | <uses-permission android:name="android.permission.INTERNET"></uses-permission> |
||
92 | |||
93 | |||
94 | </manifest> |