diff options
Diffstat (limited to 'apps/SdkController/AndroidManifest.xml')
-rwxr-xr-x | apps/SdkController/AndroidManifest.xml | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/apps/SdkController/AndroidManifest.xml b/apps/SdkController/AndroidManifest.xml index e6c876a..df7aa47 100755 --- a/apps/SdkController/AndroidManifest.xml +++ b/apps/SdkController/AndroidManifest.xml @@ -1,44 +1,44 @@ -<?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>
+<?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> |