Use YubiKit branch fix/2.1.0a1-fixes-1

This reverts commit 780791d126.
This commit is contained in:
Adam Velebil 2022-06-16 16:39:34 +02:00
parent 0b4b111acd
commit 007072943b
No known key found for this signature in database
GPG Key ID: AC6D6B9D715FC084
2 changed files with 13 additions and 1 deletions

View File

@ -7,11 +7,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout YubiKit
uses: actions/checkout@v2
with:
repository: Yubico/yubikit-android
ref: fix/2.1.0a1-fixes-1
path: kit
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Build Yubikit-android
run: ./gradlew --stacktrace check test build javadocJar publishToMavenLocal
working-directory: ./kit
- name: Install Flutter
uses: subosito/flutter-action@v2
with:

View File

@ -16,6 +16,7 @@ allprojects {
repositories {
google()
mavenCentral()
mavenLocal() // TODO: Remove this before release
}
project.ext {
@ -24,7 +25,7 @@ allprojects {
compileSdkVersion = 32
buildToolsVersion = "30.0.3"
yubiKitVersion = "2.1.0-alpha.1"
yubiKitVersion = "2.1.0-SNAPSHOT"
junitVersion = "4.13.2"
mockitoVersion = "3.9.0"
}