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

Annotation of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1010 - (hide annotations) (download) (as text)
Tue Aug 3 07:12:55 2010 UTC (13 years, 9 months ago) by torben
File MIME type: text/xml
File size: 2572 byte(s)
Bump version to 0.8.4 (28)
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 1010 android:versionName="0.8.4" android:versionCode="28">
5 torben 731
6 torben 764 <application android:icon="@drawable/train" android:label="@string/app_name">
7 torben 731 <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 torben 982 <activity android:name="NotificationList"/>
17 torben 731 <activity android:name=".stationmap.StationMapView"/>
18    
19    
20     <activity android:name=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
21     <intent-filter>
22     <action android:name="android.intent.action.MAIN" />
23     <category android:name="android.intent.category.SAMPLE_CODE" />
24     </intent-filter>
25     </activity>
26    
27     <!-- It is recommended that you use an activity-alias to provide the "CREATE_SHORTCUT" -->
28     <!-- intent-filter. This gives you a way to set the text (and optionally the -->
29     <!-- icon) that will be seen in the launcher's create-shortcut user interface. -->
30    
31     <activity-alias android:name=".CreateShortcutActivity" android:targetActivity=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
32    
33     <!-- This intent-filter allows your shortcuts to be created in the launcher. -->
34     <intent-filter>
35     <action android:name="android.intent.action.CREATE_SHORTCUT" />
36     <category android:name="android.intent.category.DEFAULT" />
37     </intent-filter>
38    
39     </activity-alias>
40    
41     <uses-library android:name="com.google.android.maps" />
42     </application>
43    
44 torben 765 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
45 torben 731 <supports-screens android:smallScreens="true"
46     android:normalScreens="true"
47     android:largeScreens="true"
48     android:anyDensity="true"/>
49    
50    
51    
52     <uses-permission android:name="android.permission.INTERNET"/>
53     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
54     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
55 torben 237 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20