Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Copyright (C) 2009 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"
- android:versionCode="100" android:versionName="1.0" package="com.magtek.mobile.android.MagTekDemo.Dynamag">
- <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="12"/>
- <supports-screens android:smallScreens="true"
- android:largeScreens="true"
- android:normalScreens="true"
- android:anyDensity="false" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
- <application android:label="@string/app_name" android:icon="@drawable/app_icon" >
- <activity android:name=".MagTekDemo" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden" android:launchMode="singleTask">
- <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>
- <intent-filter>
- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
- <action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
- </intent-filter>
- <meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter" />
- <meta-data android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" android:resource="@xml/device_filter" />
- </activity>
- </application>
- <uses-feature android:name="android.hardware.usb.host" />
- </manifest>
Advertisement
Add Comment
Please, Sign In to add comment