You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.6 KiB
44 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
package="com.android.tools.sdkcontroller" |
|
android:versionCode="1" |
|
android:versionName="1.0" > |
|
|
|
<uses-sdk |
|
android:minSdkVersion="7" |
|
android:targetSdkVersion="15" /> |
|
|
|
<uses-permission android:name="android.permission.INTERNET" /> |
|
|
|
<application |
|
android:icon="@drawable/ic_launcher" |
|
android:label="@string/app_name" > |
|
|
|
<activity |
|
android:name=".activities.MainActivity" |
|
android:label="@string/app_name" |
|
android:launchMode="singleInstance" > |
|
<intent-filter> |
|
<action android:name="android.intent.action.MAIN" /> |
|
<category android:name="android.intent.category.LAUNCHER" /> |
|
</intent-filter> |
|
</activity> |
|
|
|
<activity |
|
android:name=".activities.SensorActivity" |
|
android:launchMode="singleInstance" |
|
android:windowSoftInputMode="stateUnchanged" android:label="@string/sensors_activity_title"/> |
|
|
|
<activity |
|
android:name=".activities.MultiTouchActivity" |
|
android:launchMode="singleInstance" |
|
android:screenOrientation="portrait" |
|
android:theme="@style/Theme.MultiTouch" |
|
android:windowSoftInputMode="stateHidden"/> |
|
|
|
<service |
|
android:name=".service.ControllerService" |
|
android:description="@string/service_description" |
|
android:icon="@drawable/ic_launcher" /> |
|
</application> |
|
</manifest>
|
|
|