The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2007 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
Kartic Grover | a184341 | 2012-05-01 11:02:58 -0700 | [diff] [blame] | 17 | <!-- Declare the contents of this Android application. The namespace attribute |
| 18 | brings in the Android platform namespace, and the package supplies a unique |
| 19 | name for the application. When writing your own application, the package |
| 20 | name must be changed from "com.example.*" to come from a domain that you |
| 21 | own or have control over. --> |
| 22 | |
The Android Open Source Project | 52d4c30 | 2009-03-03 19:29:09 -0800 | [diff] [blame] | 23 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Kartic Grover | a184341 | 2012-05-01 11:02:58 -0700 | [diff] [blame] | 24 | package="com.example.android.snake"> |
| 25 | |
| 26 | <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="15" /> |
| 27 | <!-- Declares that the app supports devices w/o touch, such as a Google TV device --> |
| 28 | <uses-feature android:name="android.hardware.touchscreen" |
| 29 | android:required="false" /> |
| 30 | |
| 31 | <supports-screens android:largeScreens="true" /> |
| 32 | |
| 33 | <application android:icon="@drawable/ic_launcher" android:label="@string/app_name"> |
| 34 | <activity android:name="Snake" android:configChanges="keyboardHidden|orientation" |
| 35 | android:screenOrientation="nosensor" android:theme="@android:style/Theme.NoTitleBar"> |
| 36 | <intent-filter> |
| 37 | <action android:name="android.intent.action.MAIN" /> |
| 38 | |
| 39 | <category android:name="android.intent.category.LAUNCHER" /> |
| 40 | </intent-filter> |
| 41 | </activity> |
| 42 | </application> |
| 43 | |
| 44 | </manifest> |