1.2.0 • Published 11 months ago

@jt-technologies/expo-idnow v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@jt-technologies/expo-idnow

IDnow Video Ident Expo Module

Documentation

Installation in managed Expo projects

For managed Expo projects, please follow the installation instructions in the API documentation for the latest stable release. If you follow the link and there is no documentation available then this library is not yet usable within managed projects it is likely to be included in an upcoming Expo SDK release.

Installation in bare React Native projects

For bare React Native projects, you must ensure that you have installed and configured the expo package before continuing.

Add the package to your npm dependencies

npm install @jt-technologies/expo-idnow

Expo Configuration

IDnow SDK for Android requires minSdkVersion: 23 see here

app.json:

{
  "expo": [
    [
      "expo-build-properties",
      {
        "android": {
          "minSdkVersion": 23,
          "targetSdkVersion": 34,
          "kotlinVersion": "1.9.0"
        }
      }
    ]
  ]
}

Expo Plugin Configuration:

app.json:

{
    "expo": {
        ...
        "plugins": [
            ...
            ["@jt-technologies/expo-idnow"],
        ]
    }
}

Alternatively set all required permissions manually

app.json:

{
    "expo": {
        "ios": {
             "CFBundleDevelopmentRegion": "de",
             "NSMicrophoneUsageDescription": "Allow Location Access for Video Identification",
             "NSCameraUsageDescription": "Allow Camera Access for Video Identification",
             "NSMicrophoneUsageDescription": "Allow Microphone Access for Video Identification"
        }
        ...
        "android": {
            "permissions": [
                "android.permissions.ACCESS_NETWORK_STATE",
                "android.permissions.INTERNET",
                "android.permissions.WRITE_EXTERNAL_STORAGE",
                "android.permissions.CAMERA",
                "android.permissions.FLASHLIGHT",
                "android.permissions.MODIFY_AUDIO_SETTINGS",
                "android.permissions.RECORD_AUDIO",
                "android.permissions.BLUETOOTH",
                "android.permissions.BLUETOOTH_ADMIN",
                "android.permissions.BLUETOOTH_CONNECT"
            ]
        },
        ...

    }
}
1.2.0

11 months ago

1.1.1

11 months ago

1.1.0

11 months ago

1.0.0

11 months ago

0.1.7

11 months ago

1.1.2

11 months ago

0.1.6

11 months ago

0.1.5

11 months ago

0.1.4

11 months ago

0.1.3

11 months ago