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

Annotation of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.20