/[projects]/android/TrainInfo/AndroidManifest.xml
ViewVC logotype

Contents of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 920 - (show annotations) (download) (as text)
Sat Jun 26 11:08:43 2010 UTC (13 years, 10 months ago) by torben
File MIME type: text/xml
File size: 2522 byte(s)
Bump version number (0.8.1 / 25)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="dk.thoerup.traininfo"
4 android:versionName="0.8.1" android:versionCode="25">
5
6 <application android:icon="@drawable/train" android:label="@string/app_name">
7 <activity android:name="WelcomeScreen" android:label="@string/app_name">
8 <intent-filter>
9 <action android:name="android.intent.action.MAIN" />
10 <category android:name="android.intent.category.LAUNCHER" />
11 </intent-filter>
12 </activity>
13 <activity android:name="StationList"/>
14 <activity android:name="DepartureList"/>
15 <activity android:name="TimetableList"/>
16 <activity android:name=".stationmap.StationMapView"/>
17
18
19 <activity android:name=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
20 <intent-filter>
21 <action android:name="android.intent.action.MAIN" />
22 <category android:name="android.intent.category.SAMPLE_CODE" />
23 </intent-filter>
24 </activity>
25
26 <!-- It is recommended that you use an activity-alias to provide the "CREATE_SHORTCUT" -->
27 <!-- intent-filter. This gives you a way to set the text (and optionally the -->
28 <!-- icon) that will be seen in the launcher's create-shortcut user interface. -->
29
30 <activity-alias android:name=".CreateShortcutActivity" android:targetActivity=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
31
32 <!-- This intent-filter allows your shortcuts to be created in the launcher. -->
33 <intent-filter>
34 <action android:name="android.intent.action.CREATE_SHORTCUT" />
35 <category android:name="android.intent.category.DEFAULT" />
36 </intent-filter>
37
38 </activity-alias>
39
40 <uses-library android:name="com.google.android.maps" />
41 </application>
42
43 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
44 <supports-screens android:smallScreens="true"
45 android:normalScreens="true"
46 android:largeScreens="true"
47 android:anyDensity="true"/>
48
49
50
51 <uses-permission android:name="android.permission.INTERNET"/>
52 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
53 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
54 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20