All Projects → fttx → Barcode To Pc App

fttx / Barcode To Pc App

Licence: gpl-3.0
Barcode to PC app

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Barcode To Pc App

Zxinglite
🔥 ZXing的精简版,优化扫码和生成二维码/条形码,内置闪光灯等功能。扫描风格支持:微信的线条样式,支付宝的网格样式。几句代码轻松拥有扫码功能 ,ZXingLite让集成更简单。(扫码识别速度快如微信)
Stars: ✭ 2,117 (+1649.59%)
Mutual labels:  qrcode-scanner, barcode-scanner, barcode, scanner
Qr Code Scanner
📠 A simple, fast and useful progressive web application
Stars: ✭ 982 (+711.57%)
Mutual labels:  qrcode-scanner, barcode-scanner, barcode, scanner
Swiftscan
A barcode and qr code scanner( 二维码/条形码扫描、生成,仿微信、支付宝)
Stars: ✭ 293 (+142.15%)
Mutual labels:  qrcode-scanner, barcode, scanner, app
barcode scan2
[reborned barcode_scan] A flutter plugin for reading 2D barcodes and QR codes.
Stars: ✭ 43 (-64.46%)
Mutual labels:  scanner, barcode, qrcode-scanner, barcode-scanner
Flutter barcode scanner
Barcode scanner plugin for flutter. Supports barcode scanning for Android and iOS
Stars: ✭ 194 (+60.33%)
Mutual labels:  barcode-scanner, barcode, scanner
barcode-detector
Spec compliant polyfill of the Barcode Detection API 🤳
Stars: ✭ 31 (-74.38%)
Mutual labels:  barcode, qrcode-scanner, barcode-scanner
Scannermapp
A QR-code and barcode acanner app built in Delphi using ZXing and TFrameStand
Stars: ✭ 65 (-46.28%)
Mutual labels:  qrcode-scanner, barcode-scanner, barcode
android-zbar-sdk
🔗 android-zbar-sdk, provide jni source, so file and jar file used alone, gradle/maven remote dependencies.
Stars: ✭ 311 (+157.02%)
Mutual labels:  barcode, qrcode-scanner, barcode-scanner
BarcodeReader
Simple multi-format barcode reader for Windows
Stars: ✭ 26 (-78.51%)
Mutual labels:  barcode, qrcode-scanner, barcode-scanner
Barcodescanner.xf
Barcode Scanner using GoogleVision API for Xamarin Form
Stars: ✭ 82 (-32.23%)
Mutual labels:  qrcode-scanner, barcode-scanner, barcode
barcode-server
Barcode Server for Barcode Client-Server android application
Stars: ✭ 40 (-66.94%)
Mutual labels:  barcode, qrcode-scanner, barcode-scanner
Efqrcode
A better way to operate QR Code in Swift, support iOS, macOS, watchOS and tvOS.
Stars: ✭ 4,121 (+3305.79%)
Mutual labels:  qrcode-scanner, barcode-scanner, barcode
Code Scanner
Code scanner library for Android, based on ZXing
Stars: ✭ 543 (+348.76%)
Mutual labels:  barcode-scanner, barcode, scanner
Zxing
ZXing ("Zebra Crossing") barcode scanning library for Java, Android
Stars: ✭ 28,795 (+23697.52%)
Mutual labels:  barcode-scanner, barcode
Xcodescanner
A new frame for decode QR code and bar code on Android. It's faster, simpler and more accurate.
Stars: ✭ 661 (+446.28%)
Mutual labels:  qrcode-scanner, barcode-scanner
Openscan
OpenScan is an open-source app that enables users to scan hard copies of documents or notes and convert it into a PDF file. No ads. No data collection. We respect your privacy.
Stars: ✭ 785 (+548.76%)
Mutual labels:  scanner, app
Ngx Barcode Scanner
An angular barcode reader
Stars: ✭ 29 (-76.03%)
Mutual labels:  barcode-scanner, barcode
Tesseract Ocr Scanner
基于Tesseract-OCR实现自动扫描识别手机号
Stars: ✭ 622 (+414.05%)
Mutual labels:  qrcode-scanner, scanner
Czxing
C++ port of ZXing and ZBar for Android.
Stars: ✭ 854 (+605.79%)
Mutual labels:  qrcode-scanner, barcode
Qrandbarcodescanner
An Android app for scanning QR codes and barcodes
Stars: ✭ 114 (-5.79%)
Mutual labels:  barcode, scanner

Barcode to pc app

Useful links

Downloads

Repositories

Setup

  • Clone the repository

    git clone https://github.com/fttx/barcode-to-pc-app/
    cd barcode-to-pc-app
    
  • Install ionic and cordova

  • Put the Firebase config files in the root folder (GoogleService-Info.plist and google-services.json)

  • Install the npm dependencies and add your platform

    npm install
    ionic cordova platform add [email protected]
    ionic cordova platform add ios
    ionic cordova resources # rename icon.ios.png to icon.png to generate the iOS icons
    

Run

ionic cordova run ios --device
ionic cordova run android

Publish updates

  • Increase the version number of the package.json
  • Increase the versionCode and version number in the config.xml
  • Commit the changes, Add a tag & push
  • Run the following commands:
# iOS
# File > Workspace Settings... > Select "Legacy Build System"
# Select Generic iOS device as Build Target
# Barcode to PC > Build Phases > Remove "[CP] Copy Pods Resources"
# Barcode to PC > Build Settings > Signing > Set Code Signign Identity to "iOS Developer"
ionic cordova build ios --prod --release
open "platforms/ios/Barcode to PC.xcworkspace"
# Product > Archive

# Android
# Increase version code in config.xml
ionic cordova build android --prod --release
APK_PATH="platforms/android/app/build/outputs/apk/release/app-release-unsigned.apk"
JKS_PATH="barcode-to-pc-keystore.jks"
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore $JKS_PATH $APK_PATH keystore
zipalign -v 4 $APK_PATH out.apk
ionic info > last-ionic-info.txt
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].