My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.jtb.csdroid.donate"
android:versionCode="36"
android:versionName="1.3.2" >

<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="10" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

<application
android:name="org.jtb.csdroid.CSDroidApplication"
android:icon="@drawable/icon"
android:label="@string/app_name" >
<uses-library android:name="com.google.android.maps" />

<activity
android:name="org.jtb.csdroid.TabWidgetActivity"
android:label="@string/app_name"
android:launchMode="singleTop" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="org.jtb.csdroid.ClosestActivity"
android:launchMode="singleTop" />
<activity
android:name="org.jtb.csdroid.SearchActivity"
android:launchMode="singleTop" />
<activity
android:name="org.jtb.csdroid.FavesActivity"
android:launchMode="singleTop" />
<activity
android:name="org.jtb.csdroid.FavesShortcutActivity"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Dialog" >
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="org.jtb.csdroid.DetailActivity"
android:launchMode="singleTop"
android:screenOrientation="landscape" />
<activity android:name="org.jtb.csdroid.PrefsActivity" />
<activity android:name="org.jtb.csdroid.CSCMapActivity" />
</application>

</manifest>

Change log

r37 by jeffrey.blattman on Apr 7, 2012   Diff
fix for older SDK (String.isEmpty())
Go to: 
Project members, sign in to write a code review

Older revisions

r36 by jeffrey.blattman on Apr 1, 2012   Diff
shortcut generation through dedicated
activity with dialog theme
r35 by jeffrey.blattman on Feb 14, 2011   Diff
testing with different user agents

r34 by jeffrey.blattman on Jan 23, 2011   Diff
catch invalid site and skip, instead
of failing hard on the error
All revisions of this file

File info

Size: 2182 bytes, 57 lines
Powered by Google Project Hosting