├── .gitignore ├── .swift-version ├── LICENSE ├── README.md ├── TJBioAuthentication.podspec ├── TJBioAuthentication ├── TJBioAuthentication.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── TJBioAuthentication │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BioAuth │ ├── TJAuthErrors.swift │ ├── TJBioAuthenticator.swift │ └── TJDefaultMessages.swift │ ├── Extensions │ ├── alertHelper.swift │ └── keyBoardHelper.swift │ ├── Info.plist │ └── ViewController.swift └── _config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/README.md -------------------------------------------------------------------------------- /TJBioAuthentication.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication.podspec -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/AppDelegate.swift -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/BioAuth/TJAuthErrors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/BioAuth/TJAuthErrors.swift -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/BioAuth/TJBioAuthenticator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/BioAuth/TJBioAuthenticator.swift -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/BioAuth/TJDefaultMessages.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/BioAuth/TJDefaultMessages.swift -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/Extensions/alertHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/Extensions/alertHelper.swift -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/Extensions/keyBoardHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/Extensions/keyBoardHelper.swift -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/Info.plist -------------------------------------------------------------------------------- /TJBioAuthentication/TJBioAuthentication/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/TJBioAuthentication/TJBioAuthentication/ViewController.swift -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejas-ardeshna/TJBioAuthentication/HEAD/_config.yml --------------------------------------------------------------------------------