1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.android.tools.sdkcontroller" 4 android:versionCode="1" 5 android:versionName="1.0" > 6 7 <uses-sdk 8 android:minSdkVersion="7" 9 android:targetSdkVersion="15" /> 10 11 <uses-permission android:name="android.permission.INTERNET" /> 12 13 <application 14 android:icon="@drawable/ic_launcher" 15 android:label="@string/app_name" > 16 17 <activity 18 android:name=".activities.MainActivity" 19 android:label="@string/app_name" 20 android:launchMode="singleInstance" > 21 <intent-filter> 22 <action android:name="android.intent.action.MAIN" /> 23 <category android:name="android.intent.category.LAUNCHER" /> 24 </intent-filter> 25 </activity> 26 27 <activity 28 android:name=".activities.SensorActivity" 29 android:launchMode="singleInstance" 30 android:windowSoftInputMode="stateUnchanged" android:label="@string/sensors_activity_title"/> 31 32 <activity 33 android:name=".activities.MultiTouchActivity" 34 android:launchMode="singleInstance" 35 android:screenOrientation="portrait" 36 android:theme="@style/Theme.MultiTouch" 37 android:windowSoftInputMode="stateHidden"/> 38 39 <service 40 android:name=".service.ControllerService" 41 android:description="@string/service_description" 42 android:icon="@drawable/ic_launcher" /> 43 </application> 44 </manifest> 45