Skip to content

Latest commit

 

History

History
111 lines (86 loc) · 2.8 KB

README.md

File metadata and controls

111 lines (86 loc) · 2.8 KB

mQmcrC93Ryi2U4x5UdZNeyHQMybbyk71yCVm

QR Code Scanner

This is a QR code scanner application developed for Android devices. It utilizes the eu.livotov.labs.android:CAMView library version 2.0.1 to enable QR code scanning functionality. With this app, users can easily scan QR codes using their device's camera and extract the encoded information.

Features

  • Scan QR codes quickly and accurately.
  • Decode various types of QR codes, including URLs, contact information, calendar events, and more.
  • Real-time scanning with instant feedback.
  • Simple and intuitive user interface.
  • Lightweight and efficient scanning process.

Installation

To use the QR Code Scanner in your Android project, follow these steps:

  1. Add the following dependency to your app's build.gradle file:

implementation 'eu.livotov.labs.android:CAMView:2.0.1@aar'

  1. Sync your project with the updated dependencies.

Usage

To integrate the QR Code Scanner into your app, you can follow these guidelines:

  1. Declare the necessary permissions in your app's AndroidManifest.xml file:

<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />

  1. Create an instance of the CAMView class in your activity or fragment:

var camView = new CAMView(context);

  1. Add the CAMView to your layout:

<div id="camView"></div>

  1. Initialize the CAMView and start the QR code scanning:

var camView = document.getElementById('camView');
camView.startScanner(function(data) {
  // Handle the scanned QR code data
});

  1. Customize the appearance and behavior of the scanner as needed using the available methods and callbacks provided by the CAMView library.

For more details and advanced usage, please refer to the official documentation of the eu.livotov.labs.android:CAMView library.

License

This QR Code Scanner is released under the MIT License.

Contributions

Contributions are welcome! If you encounter any issues or have suggestions for improvements, please create an issue or submit a pull request.

Let's make QR code scanning easier and more convenient together!