Advertisement
Guest User

Untitled

a guest
Dec 27th, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.32 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.          package="com.Tugas.SoftSkill"
  4.          android:versionCode="1"
  5.          android:versionName="1.0">
  6.     <uses-sdk android:minSdkVersion="9"/>
  7.     <application android:label="@string/app_name" android:icon="@drawable/kelas">
  8.         <activity android:name=".MyActivity"
  9.                  android:label="@string/app_name">
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN"/>
  12.                 <category android:name="android.intent.category.LAUNCHER"/>
  13.             </intent-filter>
  14.         </activity>
  15.         <activity android:name=".tampilan"
  16.                  android:label="@string/app_name">
  17.             <intent-filter>
  18.                 <action android:name="com.Tugas.SoftSkill.TAMPILAN"/>
  19.                 <category android:name="android.intent.category.DEFAULT"/>
  20.             </intent-filter>
  21.         </activity>
  22.         <activity android:name=".DaftarMhs"
  23.                  android:label="@string/app_name">
  24.             <intent-filter>
  25.                 <action android:name="android.intent.action.MAIN"/>
  26.                 <category android:name="android.intent.category.DEFAULT"/>
  27.             </intent-filter>
  28.         </activity>
  29.     </application>
  30. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement