Advertisement
frozenking

AndroidManifest.xml

May 14th, 2012
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.77 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="s.s"
  4.    android:versionCode="1"
  5.    android:versionName="1.0" >
  6.  
  7.     <uses-sdk android:minSdkVersion="7" />
  8.  
  9.     <application
  10.        android:icon="@drawable/ic_launcher"
  11.        android:label="@string/app_name" >
  12.         <activity
  13.            android:windowSoftInputMode="adjustPan"
  14.            android:label="@string/app_name"
  15.            android:name=".TestsActivity" >
  16.             <intent-filter >
  17.                 <action android:name="android.intent.action.MAIN" />
  18.  
  19.                 <category android:name="android.intent.category.LAUNCHER" />
  20.             </intent-filter>
  21.            
  22.         </activity>
  23.     </application>
  24.  
  25. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement