Advertisement
royale1223

AndroidManifest.xml 2

Nov 28th, 2011
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.52 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.bionorm.tests"
  4.      android:versionCode="1"
  5.      android:versionName="1.0">
  6.     <uses-permission android:name="android.permission.CALL_PHONE" />      
  7.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  8.         <activity android:name="samples.employeedirectory.TestList"
  9.            android:label="@string/app_name">
  10.             <!-- enable the search dialog to send searches to SearchableActivity -->
  11.             <meta-data android:name="android.app.default_searchable"
  12.                       android:value="samples.employeedirectory.SearchableActivity" />
  13.             <intent-filter>
  14.                 <action android:name="android.intent.action.MAIN" />
  15.                 <category android:name="android.intent.category.LAUNCHER" />
  16.             </intent-filter>
  17.         </activity>
  18.         <activity android:name="samples.employeedirectory.SearchableActivity" >
  19.         <intent-filter>
  20.             <action android:name="android.intent.action.SEARCH" />
  21.         </intent-filter>
  22.         <meta-data android:name="android.app.searchable"
  23.                   android:resource="@xml/searchable"/>
  24.         </activity>
  25.         <activity android:name="samples.employeedirectory.TestDetails"></activity>
  26.         <activity android:name="samples.employeedirectory.DirectReports"></activity>
  27.     </application>
  28.     <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="14"/>
  29.  
  30. </manifest>
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement