mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
b2f3eb6b7b
git-svn-id: https://zxing.googlecode.com/svn/trunk@866 59b500cc-1b3d-0410-9834-0bbf25fbcc57
103 lines
4.6 KiB
XML
Executable file
103 lines
4.6 KiB
XML
Executable file
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (C) 2008 ZXing authors
|
|
|
|
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.
|
|
-->
|
|
|
|
<!-- versionCode is a monotonically increasing integer. I'm starting it at 6 because v2.3 is the 6th
|
|
version to be published. The next versionCode will be 7, regardless of whether the user-visible
|
|
versionName is 2.31, 2.4, or 3.0. -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.google.zxing.client.android"
|
|
android:versionName="2.5"
|
|
android:versionCode="11">
|
|
<application android:icon="@drawable/launcher_icon"
|
|
android:label="@string/app_name">
|
|
<activity android:name=".CaptureActivity"
|
|
android:screenOrientation="landscape"
|
|
android:configChanges="orientation|keyboardHidden"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="com.google.zxing.client.android.SCAN"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<!-- For compatibility only - do not use in new code, this will go away! -->
|
|
<action android:name="com.android.barcodes.SCAN"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="PreferencesActivity"
|
|
android:label="@string/preferences_name">
|
|
</activity>
|
|
<activity android:name="EncodeActivity">
|
|
<intent-filter>
|
|
<action android:name="com.google.zxing.client.android.ENCODE"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<!-- For compatibility only - do not use in new code, this will go away! -->
|
|
<action android:name="com.android.barcodes.ENCODE"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="SearchBookContentsActivity"
|
|
android:label="@string/sbc_name"
|
|
android:screenOrientation="landscape"
|
|
android:configChanges="orientation|keyboardHidden">
|
|
<intent-filter>
|
|
<action android:name="com.google.zxing.client.android.SEARCH_BOOK_CONTENTS"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<!-- For compatibility only - do not use in new code, this will go away! -->
|
|
<action android:name="com.android.barcodes.SEARCH_BOOK_CONTENTS"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="ShareActivity"
|
|
android:label="@string/share_name"
|
|
android:screenOrientation="user">
|
|
<intent-filter>
|
|
<action android:name="com.google.zxing.client.android.SHARE"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="BookmarkPickerActivity"
|
|
android:label="@string/bookmark_picker_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.PICK"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="HelpActivity"
|
|
android:screenOrientation="user">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS"/>
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
</manifest>
|