2008-08-19 12:14:09 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2008-10-18 09:23:24 -07:00
|
|
|
Copyright (C) 2008 ZXing authors
|
2008-08-19 12:14:09 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2008-10-18 12:27:43 -07:00
|
|
|
|
|
|
|
<!-- 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. -->
|
2008-08-19 12:14:09 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2008-10-18 12:27:43 -07:00
|
|
|
package="com.google.zxing.client.android"
|
|
|
|
android:versionName="2.3"
|
|
|
|
android:versionCode="6">
|
2008-10-18 09:23:24 -07:00
|
|
|
<application android:icon="@drawable/ic_launcher_barcodes"
|
|
|
|
android:label="@string/app_name">
|
2008-08-19 12:14:09 -07:00
|
|
|
<activity android:name=".BarcodesCaptureActivity"
|
|
|
|
android:screenOrientation="landscape"
|
2008-10-18 09:23:24 -07:00
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2008-08-19 12:14:09 -07:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
2008-10-18 09:23:24 -07:00
|
|
|
<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>
|
2008-08-19 12:14:09 -07:00
|
|
|
</activity>
|
|
|
|
<activity android:name="BarcodesPreferenceActivity"
|
|
|
|
android:label="@string/preferences_name">
|
|
|
|
</activity>
|
2008-11-06 09:17:07 -08:00
|
|
|
<activity android:name="BarcodesEncodeActivity">
|
2008-10-18 09:23:24 -07:00
|
|
|
<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>
|
2008-08-19 12:14:09 -07:00
|
|
|
</activity>
|
2008-10-18 09:23:24 -07:00
|
|
|
<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>
|
|
|
|
</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"/>
|
2008-08-19 12:14:09 -07:00
|
|
|
</manifest>
|