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

Contents of /android/TrainInfo/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2123 - (show annotations) (download) (as text)
Wed Mar 5 12:11:16 2014 UTC (10 years, 2 months ago) by torben
File MIME type: text/xml
File size: 3283 byte(s)
Add billing code
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="dk.thoerup.traininfo"
4 android:installLocation="auto"
5 android:versionCode="70" android:versionName="1.1.14">
6 <!-- non't never ever just bumb versionCode and not versionName - you can't differentiate between them if you do -->
7
8 <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="3"/>
9
10 <application android:icon="@drawable/train" android:label="@string/app_name">
11 <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 <activity android:name="NotificationList"/>
21 <activity android:name=".stationmap.StationMapView"/>
22 <activity android:name="MetroMap"/>
23 <activity android:name="SettingsScreen"/>
24 <activity android:name="AboutScreen"/>
25
26
27
28 <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
53 <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 <uses-permission android:name="com.android.vending.BILLING" />
64
65 <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 <uses-feature android:name="android.hardware.touchscreen" />
69
70
71 </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20