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

Annotation of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1712 - (hide annotations) (download) (as text)
Tue Mar 6 14:54:56 2012 UTC (12 years, 2 months ago) by torben
File MIME type: text/xml
File size: 2878 byte(s)
Bump version to 1.1.5 / 59
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 1712 android:versionCode="59" android:versionName="1.1.5">
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 1638 <activity android:name="AboutScreen"/>
23 torben 731
24    
25 torben 1446
26 torben 731 <activity android:name=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
27     <intent-filter>
28     <action android:name="android.intent.action.MAIN" />
29     <category android:name="android.intent.category.SAMPLE_CODE" />
30     </intent-filter>
31     </activity>
32    
33     <!-- It is recommended that you use an activity-alias to provide the "CREATE_SHORTCUT" -->
34     <!-- intent-filter. This gives you a way to set the text (and optionally the -->
35     <!-- icon) that will be seen in the launcher's create-shortcut user interface. -->
36    
37     <activity-alias android:name=".CreateShortcutActivity" android:targetActivity=".ShortcutActivity" android:label="TrainInfo DK - Shortcut">
38    
39     <!-- This intent-filter allows your shortcuts to be created in the launcher. -->
40     <intent-filter>
41     <action android:name="android.intent.action.CREATE_SHORTCUT" />
42     <category android:name="android.intent.category.DEFAULT" />
43     </intent-filter>
44    
45     </activity-alias>
46    
47     <uses-library android:name="com.google.android.maps" />
48     </application>
49    
50 torben 765 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
51 torben 731 <supports-screens android:smallScreens="true"
52     android:normalScreens="true"
53     android:largeScreens="true"
54     android:anyDensity="true"/>
55    
56    
57    
58     <uses-permission android:name="android.permission.INTERNET"/>
59     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
60     <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
61 torben 1397 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20