All Projects β†’ patrickmonteiro β†’ Quasar Cordova Fingerprint

patrickmonteiro / Quasar Cordova Fingerprint

πŸ”’πŸ‘πŸ“± Quasar + Cordova Fingerprint Plugin

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Quasar Cordova Fingerprint

Cordova Plugin Touch Id
πŸ’… πŸ‘±β€β™‚οΈ Forget passwords, use a fingerprint scanner!
Stars: ✭ 209 (+736%)
Mutual labels:  fingerprint, cordova
Icongenie
CLI tool to generate all the icons and splashscreens for your Quasar Apps
Stars: ✭ 174 (+596%)
Mutual labels:  quasar-framework, cordova
Cordova Plugin Fingerprint Aio
πŸ‘† πŸ“± Cordova Plugin for fingerprint sensors (and FaceID) with Android and iOS support
Stars: ✭ 236 (+844%)
Mutual labels:  fingerprint, cordova
quasar-manage
基于 Quasar-cli ηš„δΈ­εŽε°ε‰η«―θ§£ε†³ζ–Ήζ‘ˆ
Stars: ✭ 62 (+148%)
Mutual labels:  cordova, quasar-framework
Quasar Awesome
πŸŽ‰ A list of awesome things related to Quasar
Stars: ✭ 995 (+3880%)
Mutual labels:  quasar-framework, cordova
larasar
Laravel + Quasar Framework
Stars: ✭ 77 (+208%)
Mutual labels:  cordova, quasar-framework
Cordova Plugin Code Push
Cordova plugin for CodePush
Stars: ✭ 619 (+2376%)
Mutual labels:  cordova
Outline Client
Outline clients, developed by Jigsaw. The Outline clients use the popular Shadowsocks protocol, and lean on the Cordova and Electron frameworks to support Windows, Android / ChromeOS, Linux, iOS and macOS.
Stars: ✭ 6,555 (+26120%)
Mutual labels:  cordova
Android Goldfinger
Android library to simplify Biometric authentication implementation.
Stars: ✭ 608 (+2332%)
Mutual labels:  fingerprint
Cordova Plugin Splashscreen
Apache Cordova Plugin splashscreen
Stars: ✭ 602 (+2308%)
Mutual labels:  cordova
Cordova Plugin Disable Bitcode
Cordova plugin to disable bitcode in iOS build settings
Stars: ✭ 19 (-24%)
Mutual labels:  cordova
Awesome Ionic
An "awesome" list of Ionic resources
Stars: ✭ 799 (+3096%)
Mutual labels:  cordova
React Native Fingerprint Scanner
Provide Fingerprint, Touch ID, and Face ID Scanner for React Native (Compatible with both Android and iOS)
Stars: ✭ 704 (+2716%)
Mutual labels:  fingerprint
Cordova Template Framework7 Vue Webpack
Framework7 - Vue - Webpack Cordova Template with Webpack Dev Server and Hot Module Replacement
Stars: ✭ 630 (+2420%)
Mutual labels:  cordova
Biometricauthentication
Use Apple FaceID or TouchID authentication in your app using BiometricAuthentication.
Stars: ✭ 746 (+2884%)
Mutual labels:  fingerprint
Capacitor
Build cross-platform Native Progressive Web Apps for iOS, Android, and the Web ⚑️
Stars: ✭ 6,598 (+26292%)
Mutual labels:  cordova
Imgcache.js
JS library based on the File API to cache images for offline recovery (target: cordova/phonegap & chrome)
Stars: ✭ 814 (+3156%)
Mutual labels:  cordova
Cordova Plugin Wkwebview Engine
[DEPRECATED] Apache Cordova wkwebview engine plugin
Stars: ✭ 607 (+2328%)
Mutual labels:  cordova
Cordova Admob Pro
πŸ”₯ Cordova Plugin for Google AdMob, DFP, ADX. Easy monetization using mobile Ad, with single line of JavaScript. Compatible with Cordova CLI, Inoic, PhoneGap Build, etc.
Stars: ✭ 690 (+2660%)
Mutual labels:  cordova
Hiapp
A simple and interesting hybrid app. React Native version: http://t.cn/R5LqqLz Demo:
Stars: ✭ 791 (+3064%)
Mutual labels:  cordova

Quasar Cordova Fingerprint (quasar-cordova-fingerprint)

πŸ”’πŸ‘πŸ“± Quasar + Cordova Fingerprint Plugin

Plugin Used

cordova-plugin-fingerprint-aio

Install the dependencies

npm install

Boot fingerprint.js

export default async ({ Vue }) => {
  Vue.prototype.$fingerPrint = (text) => {
    return new Promise((resolve, reject) => {
      window.Fingerprint.isAvailable((suc) => {
        window.Fingerprint.show({
          clientId: 'fingerprintId',
          clientSecret: 'o7aoOMYUbyxaD23oFAnJ',
          disableBackup: true
        }, (suc) => {
          resolve(suc)
        }, (err) => {
          reject(err)
        })
      }, () => {
        reject(false)
      })
    })
  }
}

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev -m cordova -T android

Prints

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].