ercanbaran / PayCards_Android

Credit card scanning for mobile apps

Home Page:https://pay.cards/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PAY.CARDS RECOGNIZER

Automatic recognition of bank card data using built-in camera on Android devices.

See live demo: pay.cards

Installation

  • Add Maven URL for the pay.cards repository to your project build.gradle file.

    repositories {
         maven { url "http://pay.cards/maven" }
    }
  • Add the dependency

    dependencies {
        compile 'cards.pay:paycardsrecognizer:1.0.0'
    }

Usage

Build an Intent using the ScanCardIntent.Builder and start a new activity to perform the scan:

static final int REQUEST_CODE_SCAN_CARD = 1;
 
...
     
private void scanCard() {
  Intent intent = new ScanCardIntent.Builder(this).build();
  startActivityForResult(intent, REQUEST_CODE_SCAN_CARD);
}

Handle the result:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == REQUEST_CODE_SCAN_CARD) {
        if (resultCode == Activity.RESULT_OK) {
            Card card = data.getParcelableExtra(ScanCardIntent.RESULT_PAYCARDS_CARD);
            String cardData = "Card number: " + card.getCardNumberRedacted() + "\n"
                            + "Card holder: " + card.getCardHolderName() + "\n"
                            + "Card expiration date: " + card.getExpirationDate();
            Log.i(TAG, "Card info: " + cardData);
        } else if (resultCode == Activity.RESULT_CANCELED) {
            Log.i(TAG, "Scan canceled");
        } else {
            Log.i(TAG, "Scan failed");
        }
    }
}

License

MIT License

Copyright (c) 2017 faceterteam

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
 
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Credit card scanning for mobile apps

https://pay.cards/

License:MIT License


Languages

Language:C++ 87.7%Language:C 8.4%Language:Java 2.1%Language:CMake 1.6%Language:Objective-C 0.1%Language:Makefile 0.0%Language:Shell 0.0%Language:IDL 0.0%