summaryrefslogtreecommitdiffstats
path: root/tests/SerialChat/AndroidManifest.xml
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2011-08-29 20:34:56 -0400
committerMike Lockwood <lockwood@google.com>2012-02-10 10:51:20 -0800
commit25d1fdc35767e84ba5f9ee352ae25f52f139a791 (patch)
tree074e8945fe5fb07813c7ffd831a3fc85e08a15e9 /tests/SerialChat/AndroidManifest.xml
parentb01e8bf57b7492b77e3445db51471edcbadda75e (diff)
downloadframeworks_base-25d1fdc35767e84ba5f9ee352ae25f52f139a791.zip
frameworks_base-25d1fdc35767e84ba5f9ee352ae25f52f139a791.tar.gz
frameworks_base-25d1fdc35767e84ba5f9ee352ae25f52f139a791.tar.bz2
Quick and dirty test app for new SerialPort API
Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'tests/SerialChat/AndroidManifest.xml')
-rw-r--r--tests/SerialChat/AndroidManifest.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/SerialChat/AndroidManifest.xml b/tests/SerialChat/AndroidManifest.xml
new file mode 100644
index 0000000..0efdb58
--- /dev/null
+++ b/tests/SerialChat/AndroidManifest.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2011 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.serialchat">
+
+ <uses-permission android:name="android.permission.SERIAL_PORT"/>
+
+ <application android:label="Serial Chat">
+ <activity android:name="SerialChat" android:label="Serial Chat">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>