View difference between Paste ID: YYpLQJ2z and
SHOW: | | - or go back to the newest paste.
1-
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
    package="com.example.mysecondapp"
3
    android:versionCode="1"
4
    android:versionName="1.0" >
5
6
    <uses-sdk
7
        android:minSdkVersion="8"
8
        android:targetSdkVersion="15" />
9
10
    <application
11
        android:icon="@drawable/ic_launcher"
12
        android:label="@string/app_name"
13
        android:theme="@style/AppTheme" >
14
        <activity
15
            android:name=".MainActivity"
16
            android:label="@string/title_activity_main" >
17
            <intent-filter>
18
                <action android:name="android.intent.action.MAIN" />
19
20
                <category android:name="android.intent.category.LAUNCHER" />
21
            </intent-filter>
22
        </activity>
23
    </application>
24
25
</manifest>