Rev 219 | Details | Compare with Previous | 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 | |||
219 | ligi | 51 | <activity android:name=".SettingsActivity" |
52 | android:label="@string/app_name" |
||
53 | > |
||
54 | <intent-filter> |
||
212 | ligi | 55 | |
219 | ligi | 56 | <action android:name="android.intent.action.MAIN" /> |
57 | |||
58 | </intent-filter> |
||
59 | </activity> |
||
60 | |||
61 | |||
212 | ligi | 62 | <activity android:name=".RCDataActivity" |
63 | android:label="@string/app_name" |
||
64 | > |
||
65 | <intent-filter> |
||
66 | |||
67 | <action android:name="android.intent.action.MAIN" /> |
||
68 | |||
69 | </intent-filter> |
||
70 | </activity> |
||
71 | |||
72 | |||
73 | |||
74 | <activity android:name=".FlightSettingsActivity" |
||
75 | android:label="@string/app_name" |
||
76 | > |
||
77 | <intent-filter> |
||
78 | |||
79 | <action android:name="android.intent.action.MAIN" /> |
||
80 | |||
81 | </intent-filter> |
||
82 | </activity> |
||
83 | |||
84 | |||
85 | <activity android:name=".FlightSettingsSettingSelect" |
||
86 | |||
87 | android:label="@string/app_name" |
||
88 | > |
||
89 | <intent-filter> |
||
90 | |||
91 | <action android:name="android.intent.action.MAIN" /> |
||
92 | |||
93 | </intent-filter> |
||
94 | </activity> |
||
95 | |||
96 | |||
97 | </application> |
||
98 | |||
99 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission> |
||
100 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission> |
||
101 | <uses-permission android:name="android.permission.INTERNET"></uses-permission> |
||
102 | |||
103 | |||
104 | </manifest> |