mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Allowed non-autofocus devices to see the app in Market, and updated the docs and version accordingly.
git-svn-id: https://zxing.googlecode.com/svn/trunk@1173 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
bfaa68426b
commit
40ceee408a
|
@ -20,17 +20,21 @@ version to be published. The next versionCode will be 7, regardless of whether t
|
||||||
versionName is 2.31, 2.4, or 3.0. -->
|
versionName is 2.31, 2.4, or 3.0. -->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.google.zxing.client.android"
|
package="com.google.zxing.client.android"
|
||||||
android:versionName="3.1"
|
android:versionName="3.11 alpha 1"
|
||||||
android:versionCode="42">
|
android:versionCode="43">
|
||||||
<!-- We require Cupcake (Android 1.5) or later, but are really targeting Donut. -->
|
<!-- We require Cupcake (Android 1.5) or later, but are really targeting Donut. -->
|
||||||
<uses-sdk android:minSdkVersion="3"
|
<uses-sdk android:minSdkVersion="3"
|
||||||
android:targetSdkVersion="4"/>
|
android:targetSdkVersion="4"/>
|
||||||
<!-- Donut-specific flags which allow us to run on large and high dpi screens. -->
|
<!-- Donut-specific flags which allow us to run on any dpi screens. -->
|
||||||
<supports-screens
|
<supports-screens android:largeScreens="true"
|
||||||
android:largeScreens="true"
|
|
||||||
android:normalScreens="true"
|
android:normalScreens="true"
|
||||||
android:smallScreens="true"
|
android:smallScreens="true"
|
||||||
android:anyDensity="true"/>
|
android:anyDensity="true"/>
|
||||||
|
<!-- For Donut and above we must specify that we use the camera, but intentionally omit the
|
||||||
|
autofocus feature in order for the app to appear in Market for non-AF devices. While it's true
|
||||||
|
that 1D barcodes will not be scannable, QR Codes will work. Ideally we'd show users a message
|
||||||
|
to this effect on first launch. -->
|
||||||
|
<uses-feature android:name="android.hardware.camera"/>
|
||||||
<application android:icon="@drawable/launcher_icon"
|
<application android:icon="@drawable/launcher_icon"
|
||||||
android:label="@string/app_name">
|
android:label="@string/app_name">
|
||||||
<activity android:name=".CaptureActivity"
|
<activity android:name=".CaptureActivity"
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
<center><p>
|
<center><p>
|
||||||
<img src="../images/demo-yes.png"> <img src="../images/demo-no.png">
|
<img src="../images/demo-yes.png"> <img src="../images/demo-no.png">
|
||||||
</p></center>
|
</p></center>
|
||||||
|
<p><b>IMPORTANT:</b> 1D barcodes like those found on products require a phone with autofocus.
|
||||||
|
Without it, only QR Codes will be scannable.</p>
|
||||||
<p>When a barcode is read, a beep sound will play and you'll see the results of the scan, a
|
<p>When a barcode is read, a beep sound will play and you'll see the results of the scan, a
|
||||||
description of what the barcode contains, and options to take action on the contents.</p>
|
description of what the barcode contains, and options to take action on the contents.</p>
|
||||||
<p>If you're having trouble scanning, make sure to hold the phone steady. If the camera is unable to
|
<p>If you're having trouble scanning, make sure to hold the phone steady. If the camera is unable to
|
||||||
|
|
|
@ -3,6 +3,11 @@
|
||||||
<body>
|
<body>
|
||||||
<link rel="StyleSheet" href="style.css" type="text/css">
|
<link rel="StyleSheet" href="style.css" type="text/css">
|
||||||
<h3><center>What's new in this version</center></h3>
|
<h3><center>What's new in this version</center></h3>
|
||||||
|
<p>New in version 3.11:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Allowed devices without autofocus to see Barcode Scanner in the Market.</li>
|
||||||
|
<li>Minor translation and bug fixes.</li>
|
||||||
|
</ul>
|
||||||
<p>New in version 3.1:</p>
|
<p>New in version 3.1:</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Added a real-time visualization of the image processing as it's looking for barcodes.</li>
|
<li>Added a real-time visualization of the image processing as it's looking for barcodes.</li>
|
||||||
|
|
Loading…
Reference in a new issue