blob: 6e2c3e1556a9d805fcc8715c6a85c3f2ffc2746b [file] [log] [blame]
Jeff Sharkeyef946f32013-02-19 17:29:18 -08001<!-- Copyright (C) 2013 The Android Open Source Project
2
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14-->
15
16<manifest xmlns:android="http://schemas.android.com/apk/res/android"
17 package="com.android.terminal">
18
Jeff Sharkeyde15e792013-02-23 15:42:10 -080019 <application
20 android:label="@string/app_label"
Jeff Sharkey441f0182013-03-05 23:32:14 -080021 android:enabled="false">
Jeff Sharkeyde15e792013-02-23 15:42:10 -080022
Jeff Sharkey00b00812013-04-14 16:16:49 -070023 <activity
24 android:name=".TerminalActivity"
25 android:windowSoftInputMode="stateAlwaysVisible|adjustResize">
Jeff Sharkeyef946f32013-02-19 17:29:18 -080026 <intent-filter>
27 <action android:name="android.intent.action.MAIN" />
28 <category android:name="android.intent.category.DEFAULT" />
29 <category android:name="android.intent.category.LAUNCHER" />
30 </intent-filter>
Jeff Sharkeyde15e792013-02-23 15:42:10 -080031 </activity>
32
33 <service android:name=".TerminalService" />
Jeff Sharkeyef946f32013-02-19 17:29:18 -080034 </application>
35
36</manifest>