aboutsummaryrefslogtreecommitdiffstats
path: root/apps/SdkController/SdkControllerApp/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'apps/SdkController/SdkControllerApp/AndroidManifest.xml')
-rwxr-xr-xapps/SdkController/SdkControllerApp/AndroidManifest.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/SdkController/SdkControllerApp/AndroidManifest.xml b/apps/SdkController/SdkControllerApp/AndroidManifest.xml
new file mode 100755
index 0000000..62e498f
--- /dev/null
+++ b/apps/SdkController/SdkControllerApp/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<?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"/>
+
+ <application
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name" >
+ <activity
+ android:name=".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=".SensorActivity" android:launchMode="singleInstance"></activity>
+ <activity android:name=".MultitouchActivity" android:launchMode="singleInstance" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale" android:screenOrientation="portrait"></activity>
+ <service android:icon="@drawable/ic_launcher" android:description="@string/service_description" android:name="ControllerService"></service>
+ </application>
+
+</manifest> \ No newline at end of file