Advertisement
royale1223

AndroidManifest.xml

Nov 28th, 2011
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.68 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.         <meta-data android:name="android.app.default_searchable"
  9.                   android:value="samples.employeedirectory.SearchableActivity" />
  10.         <activity android:name="samples.employeedirectory.TestList"
  11.                  android:label="@string/app_name">
  12.             <intent-filter>
  13.                 <action android:name="android.intent.action.MAIN" />
  14.                 <category android:name="android.intent.category.LAUNCHER" />
  15.             </intent-filter>
  16.         </activity>
  17.         <activity android:name="samples.employeedirectory.SearchableActivity" >
  18.         <intent-filter>
  19.             <action android:name="android.intent.action.SEARCH" />
  20.         </intent-filter>
  21.         <meta-data android:name="android.app.searchable"
  22.                   android:resource="@xml/searchable"/>
  23.         </activity>
  24.         <activity android:name="samples.employeedirectory.TestDetails"></activity>
  25.         <activity android:name="samples.employeedirectory.TestList">
  26.             <meta-data android:name="android.app.default_searchable"
  27.                       android:value="samples.employeedirectory.SearchableActivity" />
  28.         </activity>
  29.         <activity android:name="samples.employeedirectory.DirectReports"></activity>
  30.     </application>
  31.     <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="14"/>
  32.  
  33. </manifest>
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement