Quick start¶
Step 1 – Request a license¶
To use the SDK, you need to get a license:
Create an account on our customer portal: https://portal.id3.eu
Make your request to our sales department: mailto:contact@id3.eu
Step 2 – Download the SDK archive¶
Download the archive on our cloud drive (the link should provided by our sales department)
Uncompress the archive.
The SDK archive contains the following directories and files:
├───activation # License activation tools for Windows, Linux and Jetson Nano
│ ├───cli-tool
│ └───windows-tool
├───bin # Native libraries
│ ├───android
│ ├───apple
│ ├───linux
│ └───windows
├───dart # Dart wrapper
│ └───id3_bioseal
├───docs # API reference and Developer Guide
│ ├───3rdparty
│ ├───developer-guide
│ └───javadoc
├───dotnet # .NET dynamic libraries
├───include # C header files
├───java # Java jar archives
├───python # Python package
├── CHANGELOG.md
├── LICENSE.md
└── README.md
Step 3 – Install the SDK¶
Select the suitable wheel file for your platform and Python version, and run
pip install id3bioseal-x.y.z-cp311-cp311-win_amd64.whl
Then import it in your code:
import id3bioseal
print(f"Using BioSeal SDK version: {id3bioseal.__version__}")
Add the dependency to your pubspec.yaml:
dependencies:
id3_bioseal:
path: ../../sdk/dart/id3_bioseal
Then import it in your Dart code:
import 'package:id3_bioseal/id3_bioseal.dart';
Install the NuGet package:
Install-Package id3.Bioseal
Then include the namespace:
using id3.Bioseal;
Add the Maven dependency to your pom.xml:
<dependency>
<groupId>eu.id3</groupId>
<artifactId>bioseal</artifactId>
<version>1.0.0</version> <!-- Use the latest version -->
</dependency>
Then import the package:
import eu.id3.bioseal.*;
Include the header file in your project:
#include "id3Bioseal.h"
// Link against the appropriate library for your platform
// - Windows: id3Bioseal.lib
// - Linux: -lid3bioseal
Step 4 – Run the samples¶
id3 Bioseal SDK contains sample projects for the following programming platforms and languages:
Windows, Linux (C/C++)
.NET (C#)
Flutter (Dart)
Android (Kotlin + Java)
iOS (Swift)
Note