Advertisement
Guest User

Untitled

a guest
Apr 21st, 2011
3,588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 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="ru.habrahabr.android"
  4.      android:versionCode="1"
  5.      android:versionName="1.0">
  6.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  7.         <activity android:name=".habr"
  8.                   android:configChanges="orientation"
  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.  
  16.     </application>
  17.     <uses-sdk android:minSdkVersion="4" />
  18.     <uses-permission android:name="android.permission.INTERNET" />
  19. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement