-
-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
98 lines (92 loc) · 3.9 KB
/
AndroidManifest.xml
File metadata and controls
98 lines (92 loc) · 3.9 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.volley.demo"
android:versionCode="3"
android:versionName="1.1" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name="com.volley.demo.VolleyExamplesApplication"
android:allowBackup="false"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.volley.demo.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.volley.demo.AboutActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="About"
android:parentActivityName="com.volley.demo.MainActivity"
android:uiOptions="splitActionBarWhenNarrow" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.volley.demo.MainActivity" />
</activity>
<activity
android:name="com.volley.demo.SimpleCacheActivity"
android:label="@string/activity_simple_cache"
android:theme="@style/AppTheme.Translucent" >
</activity>
<activity
android:name="com.volley.demo.ExampleNetworkListView"
android:label="@string/act__main__btn_network_list_view" >
</activity>
<activity
android:name="com.volley.demo.ExampleSimpleRequest"
android:label="@string/act__main__btn_simple_request" >
</activity>
<activity
android:name="com.volley.demo.ExampleJsonRequest"
android:label="@string/act__main__btn_json_request" >
</activity>
<activity
android:name="com.volley.demo.ExampleGsonRequest"
android:label="@string/act__main__btn_gson_request" >
</activity>
<activity
android:name="com.volley.demo.ExampleImageLoading"
android:label="@string/act__main__btn_image_loading" >
</activity>
<activity
android:name="com.volley.demo.ExampleNewHttpClient"
android:label="@string/act__ext_http_client" >
</activity>
<activity
android:name="com.volley.demo.ExampleSsSslHttpClient"
android:label="@string/act__main__btn_ss_ssl_http_client" >
</activity>
<activity
android:name="com.volley.demo.ExampleCookies"
android:label="@string/act__main__btn_cookies" >
</activity>
<activity
android:name="com.volley.demo.ExampleParams"
android:label="@string/act__main__btn_params" >
</activity>
<activity
android:name="com.volley.demo.ImageDetailActivity"
android:parentActivityName="com.volley.demo.SimpleCacheActivity"
android:theme="@style/AppTheme.Translucent" >
</activity>
<activity
android:name="com.volley.demo.ExampleRxGsonRequest"
android:label="RxTest" >
>
</activity>
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:theme="@android:style/Theme.Translucent"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />
</application>
</manifest>