Skip to content
This repository has been archived by the owner on May 20, 2019. It is now read-only.

Fix broken headings in Markdown files #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Easy to use barcode reader for your Android Project (Uses Google Mobile Vision A

**In active development so if you have a suggestion or feature request please feel free to open an issue!**

###Overview
### Overview
- Integrate in a **few minutes**
- Quick and simple api
- No external apps required
Expand All @@ -17,14 +17,14 @@ Easy to use barcode reader for your Android Project (Uses Google Mobile Vision A
- Supports 1D barcodes: EAN-13, EAN-8, UPC-A, UPC-E, Code-39, Code-93, Code-128, ITF, Codabar
- Supports 2D barcodes: QR Code, Data Matrix, PDF-417, Aztec

#Setup
##1. Provide gradle dependency
# Setup
## 1. Provide gradle dependency

```gradle
compile 'com.edwardvanraak:MaterialBarcodeScanner:0.0.6-ALPHA'
```

##2. Build a MaterialBarcodeScanner
## 2. Build a MaterialBarcodeScanner

```java
private void startScan() {
Expand Down Expand Up @@ -61,13 +61,13 @@ compile 'com.edwardvanraak:MaterialBarcodeScanner:0.0.6-ALPHA'
});
```

##3. Start scanning!
## 3. Start scanning!

Check out the full [example project](https://github.com/EdwardvanRaak/MaterialBarcodeScanner/blob/master/app/src/main/java/com/edwardvanraak/materialbarcodescannerexample/MainActivity.java) for code required for camera permissions on Android 6.0 Marshmallow

#Additional Setup
# Additional Setup

##Center tracking mode
## Center tracking mode

By default a barcode is tracked/highlighted at the location at which it was found.
With <i>center tracking mode</i> a square image will be shown during scanning that will turn green when a barcode is found.
Expand All @@ -83,7 +83,7 @@ If you want to provide your own image for the tracker you can use:
```
<img src="https://raw.githubusercontent.com/EdwardvanRaak/MaterialBarcodeScanner/master/DEV/screens/center_tracker_screenshot.png" width="150">

##Exclusive barcode scanning
## Exclusive barcode scanning

In some situations you might want to scan for only a certain type of barcode like QR-Codes or 2D barcodes. You can do this with the following builder methods:

Expand All @@ -98,10 +98,10 @@ If you want to scan for a very specific combination of barcodes you can setup th
.withBarcodeFormats(Barcode.AZTEC | Barcode.EAN_13 | Barcode.CODE_93)
```

##Screenshots
## Screenshots
![Image](https://raw.githubusercontent.com/EdwardvanRaak/MaterialBarcodeScanner/master/DEV/screens/screenshot1.png)

#Developed By
# Developed By

* Edward van Raak
* [email protected]
Expand Down