forked from chrisbanes/Android-PullToRefresh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
executable file
·71 lines (65 loc) · 2.39 KB
/
AndroidManifest.xml
File metadata and controls
executable file
·71 lines (65 loc) · 2.39 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.handmark.pulltorefresh.samples"
android:versionCode="2110"
android:versionName="2.1.1" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="15" />
<application
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".LauncherActivity"
android:label="PullToRefresh Samples" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".PullToRefreshListActivity"
android:label="PtR ListView" >
</activity>
<activity
android:name=".PullToRefreshListFragmentActivity"
android:label="PtR ListView Fragment" >
</activity>
<activity
android:name=".PullToRefreshListInViewPagerActivity"
android:label="PtR ListView in ViewPager" >
</activity>
<activity
android:name=".PullToRefreshGridActivity"
android:label="PtR GridView" >
</activity>
<activity
android:name=".PullToRefreshExpandableListActivity"
android:label="PtR ExpandableListView" >
</activity>
<activity
android:name=".PullToRefreshWebViewActivity"
android:label="PtR WebView" >
</activity>
<activity
android:name=".PullToRefreshScrollViewActivity"
android:label="PtR ScrollView" >
</activity>
<activity
android:name=".PullToRefreshHorizontalScrollViewActivity"
android:label="PtR HorizontalScrollView" >
</activity>
<activity
android:name=".PullToRefreshViewPagerActivity"
android:label="PtR ViewPager" >
</activity>
<activity
android:name=".PullToRefreshWebView2Activity"
android:label="PtR WebView Advanced" >
</activity>
</application>
<!-- For WebView Sample -->
<uses-permission android:name="android.permission.INTERNET" />
<supports-screens android:anyDensity="true" />
</manifest>