Advertisement
Guest User

AndroidManifest,xml

a guest
Sep 8th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.91 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.example.PollClient"
  4.          android:versionCode="1"
  5.          android:versionName="1.0">
  6.     <uses-sdk android:minSdkVersion="14"/>
  7.     <application android:label="@string/main_app_name" android:icon="@drawable/ic_launcher">
  8.         <activity android:name=".Connection"
  9.                  android:label="@string/connect_app_name">
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN"/>
  12.                 <category android:name="android.intent.category.LAUNCHER"/>
  13.                 <category android:name="android.intent.category.DEFAULT" />
  14.             </intent-filter>
  15.         </activity>
  16.         <activity android:name=".PollTaker"
  17.                  android:label="@string/poll_app_name">
  18.         </activity>
  19.     </application>
  20. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement