Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
[#4] Android UI doesn't support Portrait and is small - support for 3…
Browse files Browse the repository at this point in the history
…20x240 screens
  • Loading branch information
EddyVerbruggen committed Oct 10, 2014
1 parent fe77464 commit 7e60c7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?><plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.phonegap.plugins.barcodescanner"
version="1.2.6">
version="1.2.7">

<name>BarcodeScanner</name>
<description>You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.</description>
Expand Down
Expand Up @@ -42,8 +42,8 @@ public final class CameraManager {

private static final String TAG = CameraManager.class.getSimpleName();

private static final int MIN_FRAME_WIDTH = 240;
private static final int MIN_FRAME_HEIGHT = 240;
private static final int MIN_FRAME_WIDTH = 220;
private static final int MIN_FRAME_HEIGHT = 220;
private static final int MAX_FRAME_WIDTH = 880;
private static final int MAX_FRAME_HEIGHT = 680;

Expand Down
Binary file modified src/android/com.google.zxing.client.android.captureactivity.jar
Binary file not shown.

0 comments on commit 7e60c7c

Please sign in to comment.