1*1789df15SXin Li<?xml version="1.0" encoding="utf-8"?> 2*1789df15SXin Li<!-- 3*1789df15SXin Li/* 4*1789df15SXin Li * Copyright 2010 The Android Open Source Project 5*1789df15SXin Li * 6*1789df15SXin Li * Licensed under the Apache License, Version 2.0 (the "License"); you may not 7*1789df15SXin Li * use this file except in compliance with the License. You may obtain a copy of 8*1789df15SXin Li * the License at 9*1789df15SXin Li * 10*1789df15SXin Li * http://www.apache.org/licenses/LICENSE-2.0 11*1789df15SXin Li * 12*1789df15SXin Li * Unless required by applicable law or agreed to in writing, software 13*1789df15SXin Li * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 14*1789df15SXin Li * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 15*1789df15SXin Li * License for the specific language governing permissions and limitations under 16*1789df15SXin Li * the License. 17*1789df15SXin Li */ 18*1789df15SXin Li--> 19*1789df15SXin Li<manifest xmlns:android="http://schemas.android.com/apk/res/android" 20*1789df15SXin Li package="com.android.tests.testsensors" 21*1789df15SXin Li android:versionCode="1" 22*1789df15SXin Li android:versionName="1.0" > 23*1789df15SXin Li 24*1789df15SXin Li <uses-sdk android:minSdkVersion="8" /> 25*1789df15SXin Li <uses-permission android:name="android.permission.INTERNET" /> 26*1789df15SXin Li 27*1789df15SXin Li <application 28*1789df15SXin Li android:icon="@drawable/ic_launcher" 29*1789df15SXin Li android:label="@string/app_name" > 30*1789df15SXin Li <activity 31*1789df15SXin Li android:label="@string/app_name" 32*1789df15SXin Li android:name=".TestSensorsActivity" > 33*1789df15SXin Li <intent-filter > 34*1789df15SXin Li <action android:name="android.intent.action.MAIN" /> 35*1789df15SXin Li 36*1789df15SXin Li <category android:name="android.intent.category.LAUNCHER" /> 37*1789df15SXin Li </intent-filter> 38*1789df15SXin Li </activity> 39*1789df15SXin Li </application> 40*1789df15SXin Li 41*1789df15SXin Li</manifest>