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

Annotation of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1446 - (hide annotations) (download) (as text)
Wed May 4 20:25:15 2011 UTC (13 years ago) by torben
File MIME type: text/xml
File size: 2833 byte(s)
Add preferences
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 1444 android:versionCode="46" android:versionName="0.9.9">
6 torben 1445 <!-- non't never ever just bumb versionCode and not versionName - you can't differentiate between them if you do -->
7 torben 731
8 torben 764 <application android:icon="@drawable/train" android:label="@string/app_name">
9 torben 731 <activity android:name="WelcomeScreen" android:label="@string/app_name">
10     <intent-filter>
11     <action android:name="android.intent.action.MAIN" />
12     <category android:name="android.intent.category.LAUNCHER" />
13     </intent-filter>
14     </activity>
15     <activity android:name="StationList"/>
16     <activity android:name="DepartureList"/>
17     <activity android:name="TimetableList"/>
18 torben 982 <activity android:name="NotificationList"/>
19 torben 731 <activity android:name=".stationmap.StationMapView"/>
20 torben 1057 <activity android:name="MetroMap"/>
21 torben 1446 <activity android:name="SettingsScreen"/>
22 torben 731
23    
24 torben 1446
25 torben 731 <activity android:name=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
26     <intent-filter>
27     <action android:name="android.intent.action.MAIN" />
28     <category android:name="android.intent.category.SAMPLE_CODE" />
29     </intent-filter>
30     </activity>
31    
32     <!-- It is recommended that you use an activity-alias to provide the "CREATE_SHORTCUT" -->
33     <!-- intent-filter. This gives you a way to set the text (and optionally the -->
34     <!-- icon) that will be seen in the launcher's create-shortcut user interface. -->
35    
36     <activity-alias android:name=".CreateShortcutActivity" android:targetActivity=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
37    
38     <!-- This intent-filter allows your shortcuts to be created in the launcher. -->
39     <intent-filter>
40     <action android:name="android.intent.action.CREATE_SHORTCUT" />
41     <category android:name="android.intent.category.DEFAULT" />
42     </intent-filter>
43    
44     </activity-alias>
45    
46     <uses-library android:name="com.google.android.maps" />
47     </application>
48    
49 torben 765 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
50 torben 731 <supports-screens android:smallScreens="true"
51     android:normalScreens="true"
52     android:largeScreens="true"
53     android:anyDensity="true"/>
54    
55    
56    
57     <uses-permission android:name="android.permission.INTERNET"/>
58     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
59     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
60 torben 1397 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20