-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
43 lines (33 loc) · 2.08 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
43 lines (33 loc) · 2.08 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
<?xml version="1.0" encoding="UTF-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="corso.samples">
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17"/>
<uses-permission android:name="android.permission.INTERNET"/>
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme">
<activity android:name="corso.samples.HelloActivity">
<!-- <intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
-->
</activity>
<activity android:name="corso.samples.SubActivity"/>
<activity android:name="corso.samples.lists.SampleListActivity">
</activity>
<activity android:name="corso.samples.fragments.basics.Fragments1Activity">
</activity>
<activity android:name="corso.samples.fragments.dynamic.DynamicFragmentsActivity">
</activity>
<activity android:name="corso.samples.concurrency.ConcurrentActivity">
</activity>
<activity android:name="corso.samples.concurrency.DownloadActivity">
</activity>
<activity android:name="corso.samples.feed.RssListActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<service android:name="corso.samples.feed.RssService"/>
<provider android:name="corso.samples.feed.FeedProvider"
android:authorities="corso.samples.feed.provider"/>
</application>
</manifest>