<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
             package="cup.android.fenix" 
             android:versionCode="1" 
             android:versionName="1.0">     
    <application android:debuggable="true"  
	                android:icon="@drawable/icon" 
                    android:label="@string/text">
        <activity  android:name=".fenixActivity"
		          android:launchMode="standard" 
			 android:enabled="true"	
		 android:windowSoftInputMode="stateAlwaysHidden">
           <intent-filter>
               <action android:name="android.intent.action.MAIN"/>
               <category android:name="android.intent.category.LAUNCHER"/>
           </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="15" 
	     android:targetSdkVersion="19"/> 
    <supports-screens android:smallScreens="false" />	   
</manifest>
                       рис.4