Instructions how to get software up and running.
-
Java 11 | Limitations of Java language features and APIs | Desugaring
-
Android 6.0 (API 23) to Android 13.0 (API 33)
A step by step series of examples that tell you how to get it running.
We use GitHub Packages to distribute the SDK. In order to consume our dependencies you need to generate a GitHub Personal Access Token. Please follow the how to authenticate to GitHub Packages.
- NOTICE
-
You need to have read access to this repository and generate a personal access token with
repo
andread:packages
scope.
The token needs to be made available.
-
Add
gpr.user = {GitHub username}
andgpr.key = {GitHub Personal Access Token}
to your global Gradle properties~/.gradle/gradle.properties
gpr.user=github-username gpr.key=github-token
-
Or add following environment variables
PACKAGE_REGISTRY_USERNAME={GitHub username}
andPACKAGE_REGISTRY_TOKEN={GitHub Personal Access Token}
Add the following maven repository configuration to your root build.gradle:
allprojects {
repositories {
...
maven {
url = URI("https://maven.pkg.github.com/d4l-data4life/hc-securestore-sdk-kmp")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("PACKAGE_REGISTRY_USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("PACKAGE_REGISTRY_TOKEN")
}
}
}
}
Add following dependencies to your app build.gradle.
dependencies { implementation "care.data4life.hc-securestore-sdk-kmp:securestore-jvm:$version" }
TODO
dependencies { implementation "care.data4life.hc-securestore-kmp:securestore-android:$version" }
This project is work in progress. We are working on adding more functionality, guidelines, documentation and other improvements.
Next planed features:
-
TODO
Also see the open issues for a list of proposed features and known issues.
See changelog
We use Semantic Versioning as a guideline for our versioning.
Releases use this format: {major}.{minor}.{patch}
-
Breaking changes bump
{major}
and reset{minor}
&{patch}
-
Backward compatible changes bump
{minor}
and reset{patch}
-
Bug fixes bump
{patch}
You want to help or share a proposal? You have a specific problem? Read the following:
-
Code of conduct for details on our code of conduct.
-
Contributing for details about how to report bugs and propose features.
-
Developing for details about our development process and how to build and test the project.
Copyright (c) 2022 D4L data4life gGmbH / All rights reserved.
Please refer to our License for further details.