Advertisement
Guest User

Manifest

a guest
Oct 26th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.38 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest package="ru.Equestriadev.WTF"
  3.    android:versionCode="1"
  4.    android:versionName="0.2" xmlns:android="http://schemas.android.com/apk/res/android">
  5.  
  6.     <uses-permission android:name="android.permission.INTERNET" />
  7.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  8.  
  9.     <uses-sdk
  10.        android:minSdkVersion="8"
  11.        android:targetSdkVersion="21" />
  12.  
  13.     <application
  14.        android:allowBackup="true"
  15.        android:icon="@drawable/ic_launcher"
  16.        android:label="@string/app_name" >
  17.         <activity
  18.            android:name=".MainActivity"
  19.            android:configChanges="orientation|keyboardHidden"
  20.            android:label="@string/app_name"
  21.            android:screenOrientation="portrait"
  22.            android:theme="@style/AppBaseTheme">
  23.         </activity>
  24.         <activity
  25.            android:name=".Splash"
  26.            android:label="@string/app_name"
  27.             android:configChanges="orientation|keyboardHidden"
  28.             android:screenOrientation="portrait"
  29.             android:theme="@style/LaucherTheme" >
  30.             <intent-filter>
  31.                 <action android:name="android.intent.action.MAIN" />
  32.  
  33.                 <category android:name="android.intent.category.LAUNCHER" />
  34.             </intent-filter>
  35.         </activity>
  36.     </application>
  37.  
  38. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement