Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.10 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.yourpackagename"
  4.         android:versionCode="3"
  5.         android:versionName="1.02" >
  6.  
  7.         <uses-sdk
  8.             android:minSdkVersion="14"
  9.             android:targetSdkVersion="19" />
  10.       <uses-permission android:name="android.permission.INTERNET" />
  11.         <application
  12.             android:allowBackup="true"
  13.             android:icon="@drawable/ic_launcher"
  14.             android:label="@string/app_name"
  15.             android:theme="@android:style/Theme.NoTitleBar" >
  16.             <activity
  17.                 android:name="com.yourpackagename.thenameofyouractivity"
  18.                 android:label="@string/app_name"
  19.                 android:configChanges="orientation|screenSize" >
  20.                 <intent-filter>
  21.                     <action android:name="android.intent.action.MAIN" />
  22.                     <category android:name="android.intent.category.LAUNCHER" />
  23.                 </intent-filter>
  24.             </activity>
  25.             </application>
  26.     </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement