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

Annotation of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC 1.1.20